$(document).ready(function() {	
	//Click and Hover events for thumbnail list
	$(".image_thumb ul li:first").addClass('active'); 
	$(".image_thumb ul li").click(function(){ 
		//Set Variables
		var imgAlt = $(this).find('img').attr("alt"); //Get Alt Tag of Image
		var imgTitle = $(this).find('a').attr("name"); //Get Main Image URL
		var imgHref = $(this).find('a').attr("href"); //Get Main Image URL
		var imgDesc = $(this).find('.imageDescContent').html(); 	//Get HTML of block
		var imgDescHeight = $(".main_image").find('.block').height();	//Calculate height of block	
		
		if ($(this).is(".active")) {  //If it's already active, then...
			return false; // Don't click through
		} else {
			// Display infos		
			$(".main_image .imageDescContent").html(imgDesc);
			$(".main_image img").attr({ src: imgTitle , alt: imgAlt});
			$(".main_image a").attr({ href: imgHref });
		}
		
		$(".image_thumb ul li").removeClass('active'); //Remove class of 'active' on all lists
		$(this).addClass('active');  //add class of 'active' on this list only
		return false;
		
	});
	
    jQuery('#carousel').jcarousel();
    
    
    $(".main_image a").colorbox( { width:"531", height:( $.browser.msie && $.browser.version.substr(0,1)=='7' ? "544" : "514"), iframe:true, opacity:0.70, scrolling: false } );
    
    $(".accountButton a.anonyme").colorbox( { width:"474", height:( $.browser.msie && $.browser.version.substr(0,1)=='7' ? "293" : "263"), iframe:true, opacity:0.70, scrolling: false } );
    $("a.loginPushButton").colorbox( { width:"474", height:( $.browser.msie && $.browser.version.substr(0,1)=='7' ? "293" : "263"), iframe:true, opacity:0.70, scrolling: false } );
    $("a.starDetailLink").colorbox( { width:"535", height:( $.browser.msie && $.browser.version.substr(0,1)=='7' ? "565" : "535"), iframe:true, opacity:0.70, scrolling: false } );
    $("a.starCreateLink").colorbox( { width:"520", height:( $.browser.msie && $.browser.version.substr(0,1)=='7' ? "590" : "560"), iframe:true, opacity:0.70, scrolling: true } );
    
    // SHOPS ADDRESS
    $(".productShops a").click(function(){ 
    	$( $(this).attr( "href" ) ).show();
	});
    
    $(".shopDetails").hide();
    
    $(".shopDetails").hover(function(){}, function(){
		$(this).hide();
    });
  
    $('#ads').flash(
    		{
    			swf: '/themeIris/medias/Ads.swf',
    			height: 200,
    			width: "100%",
    			hasVersion: 10,
    			wmode: 'opaque',
				flashvars: 'basePath=http://www.irisoptic.fr/'
    		}
    		);

    $(":text").labelify({ labelledClass: "promptingTextInput" });
    
    // Animation vignettes categorie
    $(".subcategory").mouseover(function () {
    	$(this).fadeTo("fast", 0.70);
    });
    $(".subcategory").mouseout(function () {
    	$(this).fadeTo("fast", 1);
    });
    
    $('.homeNews .caption').css({opacity: 0.7});
});

