jQuery(document).ready(function($) {


setThumbnails();






});




function setThumbnails() {
$('.content_product_gallery a').click(function() {
{
	var id= $(this).attr("id");
	$("div", "#gallery").each(function(){showHide($(this),id)});
}
}) ;
}




function showHide(elem, id){

	if(elem.attr("id") == (id+"_normal")){
		elem.show();
	}

	else{
		elem.hide();
	}
}


