//shop.js

var showtime;
var product;

function gotoBasket(ElementID){
	return 0;
	product = document.getElementById(ElementID).attributes;
	alert(product[0].top);
	
	showtime = setInterval('StartMoving()',5);
	
}

function startMoving(){	
	
	product.clientWidth = product.clientWidth - 2;
	if (product.clientWidth < 0){
		stopMoving();	
	}
}

function stopMoving(){
	clearInterval(showtime);
}