$(document).ready(function() {
	InitializeJSEffects();
}); 

function InitializeJSEffects() {
	$('.extra-menu li').each(function(){
		var width1 = $(this).innerWidth();
		$(this).find('.hover-img').css('width', width1);
	});
	$('.extra-menu li a').hover(function(){
			$(this).parent().addClass('hover-menu');
		},
		function(){
			$(this).parent().removeClass('hover-menu');
		});

	//$('.scroll-active').jScrollPane({showArrows:true, scrollbarWidth: 9, scrollbarMargin: 0});
	$('.carusel-active').not(".jcarousel-list").jcarousel({
		scroll: 1
		});
    
		
		$('.cloud-zoom').CloudZoom();
		//window.setTimeout(function() {
      //Cufon.replace(['.cf-font a', 'p.cf-font', '.cf-font'], { hover: true });
    //}, 10);
}
