jQuery(document).ready(function()
{
	jQuery( '#search_text' ).keypress( function( event ) 
	{
		if ( event.which == 13 )
		{
			var text = jQuery( '#search_text' )[0].value;
			text = jQuery.trim( text );
			
			if ( text != '' )
			{
				event.preventDefault();
				window.location = '/search?q=' + escape( text );
			}
		}
	} );
	
	jQuery( '#search_bar .search_button input' ).click( function( event ) 
	{
		var text = jQuery( '#search_text' )[0].value;
		text = jQuery.trim( text );
		
		if ( text != '' )
		{
			event.preventDefault();
			window.location = '/search?q=' + escape( text );
		}
	} );
} );
