var showDetailedSearch = function()	{
	$("#detailed-search").animate({opacity: '1.0', height: '50px'}, 500);
	$("#detailed-search form").show();	//kvuli IE 7-8
};

var hideDetailedSearch = function()	{
	$("#detailed-search").animate({opacity: '0', height: '0'}, 500);
	$("#detailed-search form").hide();	//kvuli IE 7-8
};
