$(document).ready(function(){
	slideAdminTools();
	dropDownNavigationTools();
	external();
	popup();
	//flashObjectActions();
	//$('#flashMessage').delay(2000).slideUp('fast');
	$('.amount').keyup(function() {
		if(!isNaN(this.value) && this.value > 0) {
			if(this.value != this.defaultValue)
				$('#CartUpdateForm').submit();
		}
	});
});


function showLabel() {
	$('#label_cart').css('top', '-100px').delay(220).animate({top: '0'}, 'slow');
}

function hideLabel() {
	$('#label_cart').delay(200).animate({top: '-100px'}, 'slow');
}
