$(document).ready(function() {

	/**
	* highlight parent background of an element when clicked
	*/
	$(".quantity").focus(function(){
		$(".update-cart-message").hide("fast").show("fast");
	});

	$(".remove").click(function(){
		$(".update-cart-message").hide("fast").show("fast");
	});

	
});