// slide show
$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		prev: '#prev',
		next: '#next'
	});
	
});

//Clears Zeros in the shopping cart
function ClearZero(textboxID)
{
	var qty = document.getElementById(textboxID); 
	if(qty.value == "0") 
	{
		qty.value="";
	}
}
