// JavaScript Document
 $(document).ready(function(){
							
		$(".content").css({"min-height":"550px"});
		var cHeight = $(".content").height();
		var hHeight = $(".header").height();
		var lnHeight = $(".left-nav").height();
		var rH = cHeight + hHeight +10;
		if (cHeight > lnHeight){
			$(".left-menu").css({"height": rH + "px"});
		} else if (lnHeight > cHeight){
			$(".content").css({"height": rH + "px"});
		}
		
		
		$(".free-estimate").click(function() { window.location=$(this).find("a").attr("href"); return false; });
		$(".ad").click(function() { window.location=$(this).find("a").attr("href"); return false; });
		
		$('.header-top').css('top', $(this).scrollTop() + "px");
		$(window).scroll(function() {
			$('.header-top').css('top', $(this).scrollTop() + "px");
		});
	});