/* 
	Image Swapper for JShop
	Malc Jennings 2008 / Yorganic.com
*/
	function LoadImage(toLoad)
	{
		jQuery('#Loader').fadeIn('fast');
		jQuery('#ProductImage').fadeOut();
		jQuery('#ProductImage').load(toLoad);
		jQuery('#ProductImage').fadeIn();	
		jQuery('#Loader').fadeOut();
	}