//Animate Image on mouse click

function load_image(ImgSrc,ImgID,textID,textVal)
{
	//alert(textVal)
	$(textID).hide();
	Effect.Shrink(ImgID, {delay: .2, duration: 2, afterFinish: function()
		{
			$(ImgID).src = ImgSrc;
			
			Effect.Grow(ImgID, {delay: 1, duration: .2, afterFinish: function()
				{
					$(textID).show();
					$(textID).innerHTML = textVal;
				}});
			
			
		}});


}

// Animate Image with its price

function load_image_price(ImgSrc,ImgID,textID,priceID,addtocartID,textVal,textPrice,proID)
{
	//alert(textVal)
	$(textID).hide();
	$(priceID).hide();
	$(addtocartID).hide();
	Effect.Shrink(ImgID, {delay: .2, duration: 2, afterFinish: function()
		{
			$(ImgID).src = ImgSrc;
			
			Effect.Grow(ImgID, {delay: 1, duration: .2, afterFinish: function()
				{
					$(textID).show();
					$(textID).innerHTML = "<a href='showproductDetails.php?id="+proID+"' title='Click To View Details' class='pagi'>"+textVal+"</a>";
					$(priceID).show();
					$(priceID).innerHTML = "Price : $ "+textPrice;
					$(addtocartID).show();
					$(addtocartID).innerHTML = "<a href='showproductDetails.php?id="+proID+"' title='Click To Add To Cart' class='pagi'><img src='images/addtocart_12.gif' border='0' /></a>";
				}});
			
			
		}});


}
