$(document).ready(function(){
	$(".product-thumbnail").each(function(){
		//pname = $(this).next().text();
		psrc = $(this).find('img').attr('src');
		psrc = psrc.replace('140','280').replace('140','280');
		$(this).simpletip({ 
		//content: '<h3>Large Image will be here for</h3><p>'+psrc+'</p>',
		content: '<img src="'+psrc+'" />',
		fixed: true,
		position: 'left'
		});
	});
});
