$(document).ready(function(){

	initThumbs();

});


function initThumbs(){
// thumbs
	$("#work_thumb_view dl").hover( 
        function () {
			var bgColor = $(this).find("a:first").attr("rel");
			if (bgColor == ""){
				bgColor = "#e52525"
		}
 		
          
			$(this).animate({backgroundColor:"#e52525", color:"#f08383"}, {queue:false,duration:500});
			$(this).children("dd.project_client").animate({color:"#f08383"}, {queue:false,duration:500});
 			$(this).children("dd:last").animate({color:"#FFFFFF"}, {queue:false,duration:500});
			$(this).addClass("active");
        }, function () { 
          	$(this).animate({backgroundColor:"#fcfcfc", color:"#636363"}, {queue:false,duration:500});
			$(this).children("dd.project_client").animate({color:"#636363"}, {queue:false,duration:500});
			$(this).children("dd:last").animate({color:"#e52525"}, {queue:false,duration:500});
			$(this).removeClass("active")
        }); 

	$("#work_thumb_view dl").click(function(){
		  var url = $(this).find("a").attr("href");

			if ( url != undefined){
				window.location = url; return false;
			}
	});
}
