//for the cart communications
//if this is the live site...

$(function()
{
// stuff in the header

	$('#hpSplash img').hover(function()
	{
		$(this).attr('src',$(this).attr('src').replace('off','on'));
	},
	function()
	{
		$(this).attr('src',$(this).attr('src').replace('on','off'));
	});


	//the location search functionality
	$('#headerLocationSearch').click(
	function()
	{
		if(this.value == 'LOCATIONS (enter state)')
		{
			this.value='';
		}
	}).blur(
	function()
	{
		if(jQuery.trim(this.value)=='')
		{
			this.value='LOCATIONS (enter state)';
		}
	}).keyup(function(e) {
		//alert(e.keyCode);
		if(e.keyCode == 13) {
			window.location = '/soup-shop/supermarkets/';
		}
	});
});

