function console_log (msg)
{
	try
	{
		console.log(msg);
	}
	catch (event)
	{
	}
}


$
(
	function()
	{
		
		$('#searchsubmit').click
		(
			function ()
			{
				$('#searchform').submit();
				return false;
			}
		)

		if (jQuery.browser.msie)
		{
			// ------------------------------
			// Bordi curvi per explorer 7 e 8
			// ------------------------------
			if ( parseInt(jQuery.browser.version) >= 7 )
			{
				// le ui81-box
				DD_roundies.addRule('#page_heading_inner', '8px 8px 0 0');
				DD_roundies.addRule('.wpcf7', '7px');
				DD_roundies.addRule('#wizard-puntivendita', '7px');
			}
			
			
			// ------------------------------
			// PngFix per IE6
			// ------------------------------
			else
			{
				$(document).pngFix({blankgif: '/wp-content/themes/macropet/images/blank.gif'});
			}
		}
				

	}


);


