/*
//------------------------------------------------------------------------------
function product_onMouseOut(img1)
{
	//alert(image);
	img =document.getElementById("mainimage");	
	img.src	=	"images/homepage/"+img1;
}
//------------------------------------------------------------------------------
function product_onMouseOver(productid)
{
	img =document.getElementById("mainimage");
	eval("img.src='images/products/"+productid+".jpg'");

}
//------------------------------------------------------------------------------
function get_random(max)
{
    var ranNum= Math.floor(Math.random()*max);
    return ranNum;
}
//------------------------------------------------------------------------------
function productdetails_onMouseOver(img)
{
	img =document.getElementById("mainimage");
	eval("img.src='images/homepage/"+img+".jpg'");
}
function product_detail_onMouseOver(img1)
{
	//alert(img1);
	img=document.getElementById("main_image");
	img.src="images/products/"+img1;
}
function product_detail_onMouseOut(img1)
{
	img=document.getElementById("main_image");
	img.src="images/products/"+img1;
}
*/
//------------------------------------------------------------------------------
function swap_product_hpg(id, image)
{
	img		=	document.getElementById(id);
	img.src	=	"images/homepage/"+image;
}
//------------------------------------------------------------------------------
function swap_product_detail(id, image)
{
	//alert(image);
	img		=	document.getElementById(id);
	img.src	=	"images/products/"+image;
}
//------------------------------------------------------------------------------




































































































