$(document).ready(function() {
	$('.thumb_img').mouseover( function() { 
		$(this).addClass('thumb_hovered');
	});
	
	$('.thumb_img').mouseover( function() { 
		$(this).removeClass('thumb_hovered');
	});
	
	$('.thumb_img').click( function() {
		var id = $(this).attr('id').substr(4);
		$('#latest_img').fadeOut('slow',function(){
			$.ajax({
	  			type: "GET",
	  			url: "get_item_ajax.php",
	  			data: "id="+id,
	  			success: function(result){
	    			var data = result.split("##");
	    			/*pic1= new Image(); 
            pic1.src=data[1]; 
	    			*/
	    			$('#latest_img').attr('src',data[1]);
            $('#latest_img').fadeIn('slow');
	    			//
	  			}
			});	
		});
		
	});
	
	
});
