/* ---------------------------------------------------- */
/* JQuery												*/
/* ---------------------------------------------------- */
$jQuery(document).ready(function() 
{

	/*############################################################################
	If the basket delete button is clicked
	############################################################################ */
	$jQuery("input.delete_product_from_basket").click(function() {
		var agree = confirm("This will remove this item from your shopping basket.\n\nClick OK to confirm you wish to do this?");
		if ( agree ) { return true ; }
		else { return false ; }
	});
	
	/*############################################################################
	If the basket delete button is hovered over
	############################################################################ */
	$jQuery("input.delete_product_from_basket").hover(
		function()
		{
			this.src = this.src.replace("_off","_on");
		},
		function()
		{
			this.src = this.src.replace("_on","_off");
		}
	);


});
