function console_log (msg)
{
	try
	{
		console.log(msg);
	}
	catch (event)
	{
	}
}


$
(
	function()
	{

		$('div.search-background input.image-button').bind
			(
				'click', function ()
				{
					$('form[name=productsearchform]').submit();
					return false;
				}
			);
	}

);
