//Language Javascript
var timers = new Array(1,1,1,1,1,1);
var sessionid = "";
var specoffers = 0;

function init(sid,offers) 
{
	sessionid = sid;
	specoffers = offers;
	
	setInterval('changepromo("img_promo")',3000);

	setInterval('changecell(0)',5000);
	setInterval('changecell(1)',5000);
	setInterval('changecell(2)',5000);
	setInterval('changecell(3)',5000);
	setInterval('changecell(4)',5000);
}
function showproduct(prodid) {
	window.open("?prod="+prodid,"kaydian_product_"+prodid,"width=400,height=480,resize=0,status=0,toolbar=0");
}
function changecell(id) {
	var img = document.getElementById("img_cell"+id);
	if( img ) {
		img.src = "images/dynamic.php?cell"+id+"="+timers[id];
		timers[id]++;
	}
}
function changepromo(id,sid) {
	var img = document.getElementById(id);
	if( img ) {
		img.src = "images/dynamic.php?sid="+sessionid+"&promo="+specoffers+"&rand="+timers[5];
		timers[5]++;
	}
}
function updatequantity(id) {
	var obj=document.getElementById('qty_'+id);
	if( obj ) document.location.href="?basket_qty="+id+"&qty="+obj.value;
}
