/* 
	Image Swapper for JShop
	Malc Jennings 2008 / Yorganic.com
*/

function Loader(toLoad)
{
		jQuery('#Loader').fadeIn('fast');
		jQuery('#ProductImage').load(toLoad);
		jQuery('#Loader').fadeOut();	
}
	function LoadImage(toLoad)
	{
		jQuery('#ProductImage').fadeOut("slow",Loader(toLoad));
		jQuery('#ProductImage').fadeIn();	
	}