/**
 * jQuery DOM ready handler.
 **/
$(document).ready(function() {
	
	$('.searchform .go').click(function(){
		$(this).closest('.searchform').submit();
	});
	
});


