//var $J = jQuery.noConflict();
jQuery(document).ready(function(){
	
	heights();
    	
	colorize_search_result();
    
    $("#login_block").height($("#login_block").height());
	
	$(".formhead:last").css('float','left');
});

heights = function ()
{
	if (($("#main01").height() + 28) < $(document).height())
		$("#footer").height($(document).height() - $("#top").height() - $("#header").height() - $("#content").height() - 32);
}


colorize_search_result = function()
{
    $(".search_res th:last, .search_res td:last").css({'border-right': 'none'});
    $(".search_res tr:even td").css({'background': '#dbdbdb'});
}

