$(function(){
	
    
    $('textarea[title!=""]').hint();    
    $('input[title!=""]').hint();
    
    $("#contact-form").validate({ignoreTitle: true});
    $(".contact-form").validate({ignoreTitle: true});
    
	$("label.error").click(function(){
		$(this).slideUp();
	});
	
	$('#goto_estimates').click(function(){
		
		/*$('div.estimates_block').addClass("focus");*/
		var $target = $('div.estimates_block');
		$.scrollTo( $target , 800 );		
			
		$target.stop().animate({
            borderColor: '#328A26' 
        });
        
		return false;
	});
});
