$(function() {
	$("ul.slideHolder img").click(function(){
		var id = $(this).attr ("id") + "_big";
		$(".bigImgHolder").hide ();
		
		$("#" + id).fadeIn(500);
	});
	$("ul.slideHolder li").click(function(e){
		e.preventDefault();
	});
});
