//Image preview script powered by jQuery (http://www.jquery.com)
 
this.imagePreview = function(){	
	$("a.preview").hover(function(){
	
		$("body").append("<p class='start_bk' id='preview'><img src='/images/"+ this.id +".jpg' ' alt='ÑÂëàéí' />"+"</p>");					$("#preview").fadeIn(500);						
    },
	function(){
		
		$("#preview").remove();
    });	
};

// starting the script on page load
$(document).ready(function(){
	imagePreview();
});


