jQuery(document).ready(function(){

	jQuery(".list_v_img").mouseenter(function() {
		//alert("hallo");
		var id = jQuery(this).parent().parent().attr("id").getId();
		var data = 'id='+id;
		jQuery('#box16').load('/getdetails.php',data);
	});
	/*
	jQuery(".list_v_img").mouseleave(function() {
		jQuery('#box16').html('');
	});
	*/
	
});

/*************************************************/
String.prototype.getId = function () {
    return this.substr(this.search("_")+1);
};

