$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.cbox div').hover(function(){
		$(".cover", this).stop().animate({top:'290px'},{queue:false,duration:320});
	}, function() {
		$(".cover", this).stop().animate({top:'340px'},{queue:false,duration:320});
	});
	
	
	$('.pbox').hover(function(){
		$(".cover", this).stop().animate({top:'170px'},{queue:false,duration:320});
		$(".pboxtitle", this).stop().animate({top:'170px'},{queue:false,duration:320});
	}, function() {
		$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:320});
		$(".pboxtitle", this).stop().animate({top:'210px'},{queue:false,duration:320});
	});
	
});

function AddProduct(){
	var qty = GetId('qty').value;
	
	if(qty == '' || isNaN(qty) || (!isNaN(qty) && qty <= 0)){ // Must be a number AND > 0
		alert('Quantity entered must be a number > 0!');
	}
	else
		GetId('product_form').submit();	
}


