$(document).ready(function(){
	$(function(){
		var h1heigth = $("form#search-form h1").height();
		if (h1heigth < 25){
			$("form#search-form h1").css("top","75px");
		}
		if (h1heigth > 25 && h1heigth < 45){
			$("form#search-form h1").css("top","65px");
		}
	});
});
