var chapperal = {
				src: '/templates/11-temp/js/chapperal.swf'
			  };
			sIFR.activate(chapperal);

			  sIFR.replace(chapperal, {
				selector: '.activeButton'
				,forceSingleLine: true
			  	,wmode: 'transparent'
				,css: [
				  '.sIFR-root { text-align: center;  color:#ffffff; font-weight: bold; font-size:13px;  line-height: 1em;}'
				  ,'a {width:86px; height:31px;display:block; text-decoration: none; }'
				  ,'a:link { color: #ffffff; }'
				  ,'a:hover { color: #ffffff; }'
				]
			  });
			  sIFR.replace(chapperal, {
				selector: '.button'
				,forceSingleLine: true
			  	,wmode: 'transparent'
				,css: [
				  '.sIFR-root { text-align: center; font-weight: bold; color:#000000; font-size:13px; line-height: 1em;}'
				  ,'a {width:86px; height:31px;display:block; text-decoration: none;  }'
				  ,'a:link { color: #000000; }'
				  ,'a:hover { color: #ffffff; }'
				]
			  });  
			  
			  $(document).ready(function(){
				   $(".button").hover(
					  function () {
						$(this).addClass('activeButton'); //.css("background", "url('/templates/11-temp/images/button-bg-trans.png') no-repeat");
					  }, 
					  function () {
						$(this).removeClass('activeButton'); //css("background", "none");
					  }
					);
				 });
