	jQuery(function(){

		//Fix the IE7 z-index bug
		var zIndexNumber = 1000;
		jQuery('div').each(function() {
			jQuery(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
		
		//Fix index issues with colorbox
		jQuery('#colorbox').css('zIndex',1001);
		jQuery('#cboxOverlay').css('zIndex',990);

		jQuery('ul.sf-menu').superfish({ 
			delay:       600,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: true                            // disable drop shadows 
		}); 

		jQuery("a[rel='newsletter']").colorbox({width:"500px", height:"300px",iframe:"true"});
		jQuery("a[rel='catalogs']").colorbox({width:"400px", height:"300px",iframe:"true"});
		jQuery("a[rel='catalogs2']").colorbox({ width:"400px", height:"300px",iframe:"true"});
		jQuery("a.videos").colorbox({ width:"630px", height:"560px",iframe:"true"});
		jQuery("a[rel='more_info']").colorbox({ width:"600px", height:"400px",iframe:"true"});
		jQuery("a[rel='Prod_videos']").colorbox({ width:"600px", height:"600px",iframe:"true"});
		jQuery("a[rel='product_image']").colorbox({ });

		//Left products menu
		jQuery('.accordion_menu').initMenu();

	});
