$(function(){

	$(".pic_small_images img").each(function(i){
			$(this).mouseover(function(){
				$(this).css("cursor","pointer")
				$(".pic_big_img img").hide().eq(i).show();
			})
		})	
})
