function searchString(object) {
	location.href = jQuery('#SearchUrl').val()+jQuery('#SearchString').val();
	return false;
}

jQuery(document).ready(function() {
	jQuery('#SearchAddForm').submit(function() {
		  return searchString(this);
		});
	jQuery('.companies-table tr').mouseover(function() {
		jQuery(this).addClass('hover');
	});
	jQuery('.companies-table tr').mouseout(function() {
		jQuery(this).removeClass('hover');
	});
	jQuery('.companies-table tr').click(function() {
		if(jQuery.trim(jQuery(this).find('a').attr('href')) != 'http://')
		{
			window.open(jQuery.trim(jQuery(this).find('a').attr('href')), '_blank');
		}
	});
});
