$(document).ready(function(){  
    $(".thumb a").click(function(){
    	var imgId = $(this).parent().parent().attr('id');
		var imgHref = $(this).attr('href');  //get the src of the thumbnail
   		/*$(".thumb#"+imgId+" a").removeClass("selected");  //remove .selected class from all other links
    	$(this).addClass("selected");  //add .selected class to current link*/
		$(".big#"+imgId+"").stop();
		$(".big#"+imgId+"").stop().fadeTo(200, 0, function() {  //fade image out
    		$('.big#'+imgId+'').attr('src',imgHref);  //give new image a src attribute
    	}).fadeTo(500, 1);  //fade the image in
		return false;
	},function(){    //for onmouseout not used here
	});
	 $(".carousel a").click(function(){
    	var imgId = $(this).parent().parent().attr('id');
		var imgHref = $(this).attr('href');  //get the src of the thumbnail
   		/*$(".thumb#"+imgId+" a").removeClass("selected");  //remove .selected class from all other links
    	$(this).addClass("selected");  //add .selected class to current link*/
		$(".big#"+imgId+"").stop();
		$(".big#"+imgId+"").stop().fadeTo(200, 0, function() {  //fade image out
    		$('.big#'+imgId+'').attr('src',imgHref);  //give new image a src attribute
    	}).fadeTo(500, 1);  //fade the image in
		return false;
	},function(){    //for onmouseout not used here
	});
});

