
$(document).ready(function(){
	 
	   if(jQuery.fn.fancybox) {
	  	 $("a.fancybox").fancybox({'fancy':true,'speed':750,'overlayShow':true, 'overlayOpacity':0.73});
	   };
	   
	  
	 /*  jQuery('#mycarousel').jcarousel({
        auto: 2,
        wrap: 'last',
        scroll:1,
       
        initCallback: mycarousel_initCallback
    });*/
	 //  swfobject.embedSWF(public_root_path+"/swf/header.swf", "header", "1000", "227", "9.0.0"); 
	   var s1 = new SWFObject(public_root_path+"/swf/header.swf",public_root_path+"/swf/header.swf","680", "227","8");
		s1.write("header");
	
	});

	function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
