//JavaScript Document
//Andrew McConville


jQuery(document).ready(function(){
	
	jQuery('#menu-navigation li').hover(
		function() {
			jQuery(this).find('.sub-menu').fadeIn(400);
		},
		function() {
			jQuery(this).find('.sub-menu').fadeOut(200);
		}
	);
	
	if (jQuery('.checkout_cart:contains("5 gal.")').length > 0) {
		jQuery("#ups-surcharge").css("display","block");
	}
	
	jQuery('.wpsc_buy_button').click(function() {
		jQuery('#sliding_cart #widget-cart-contents div').css({"fontSize":"20px"},{"fontWeight":"bold"});
	});
	
	jQuery('.wpsc_buy_button').click(function() {
		jQuery('#widget-cart-contents').animate( {
			backgroundColor:'#fff'
	  },
			1000,
			function(){
			});
	});
	
	jQuery('#wpsc_checkout_form_20').attr('placeholder','Valid email Required');
	
	jQuery('#wpsc_shopping_cart_container .wpsc_gateway_container .custom_gateway_float').eq(1).css("display","none");
	jQuery('#checkout_page_container').append('<p class="call-to-order">If you would prefer to pay by credit card without going through Paypal please call us Toll Free at (888) 760-8649, 9:00 a.m. - 4:30 p.m. (CST), Monday-Friday.</p>')
	
});
