$(document).ready(function() {	
	$(".promo_image .desc").show();
	$(".promo_text .block").animate({ opacity: 0.85 }, 1 );

	$(".image_thumb ul li:first").addClass('active'); 
	$(".image_thumb ul li").click(function(){ 
		var imgAlt = $(this).find('img').attr("alt");
		var imgTitle = $(this).find('a').attr("href");
		var imgDesc = $(this).find('.block').html();
		var imgDescHeight = $(".promo_text").find('.block').height();
		
		if ($(this).is(".active")) {
			return false;
		} else {
			$(".promo_image img").animate({ opacity: 0}, 250 );
			$(".promo_text .block").animate({ opacity: 0, marginBottom: -imgDescHeight }, 250 , function() {
				$(".promo_text .block").html(imgDesc).animate({ opacity: 0.85,	marginBottom: "0" }, 250 );
				$(".promo_image img").attr({ src: imgTitle , alt: imgAlt}).animate({ opacity: 1}, 250 );
			});
		}
		
		$(".image_thumb ul li").removeClass('active');
		$(this).addClass('active');
		return false;
		
	}) .hover(function(){
		$(this).addClass('hover');
		}, function() {
		$(this).removeClass('hover');
	});
			
	$("a.collapse").click(function(){
		$(".promo_text .block").slideToggle();
		$("a.collapse").toggleClass("show");
	});
	
});

