$(function() {
    $("#prop-tab-hit").toggle(
      function() {
        $("#property-container").animate({height: 550}, 1000);
      },
      function() {
        $("#property-container").animate({height: 5}, 1000);
      }
    );
    
    var isHome = $('#is_home');
    if(isHome.val() == 'home')
    {
      setTimeout(function(){
        $("#property-container").animate({height: 200}, 1000);
        setTimeout(function(){
           $("#property-container").animate({height: 5}, 1000);
          }, 4000);
      }, 2000);
    }
   // $(".contact-form").livequery(function(){
   //  	var itForm = $(this);
   //  	$(itForm).validationEngine({
   // 		inlineValidation: false,
   // 		success :  function(){
   // 			$(itForm).ajaxSubmit(function(){
   // 				$(itForm).html("<p class='notice'>Your message has been sent!</p>");
   // 				urchinTracker('/listings/lead-sent');
   // 				setTimeout(function(){
   // 					$('#facebox_overlay').click();
   // 				}, 3000);
   // 			});
   // 			return false;
   // 		},
   // 		failure : function() { return false; },
   // 		unbindEngine:false,
   // 		scroll: false
   // 	});
  //});

  $('.but_sort').hide();
	$('.op_sort').change(function(){
		$('#sort-form').submit();
	});
  
});
