$(document).ready(function(){
	
    $('.image').cycle({
        speed:       700,
        timeout:     5000,
        pager:      '#bannerlinks',
		pauseOnPagerHover: true,
		pagerAnchorBuilder: function(idx, slide) {
            return '#bannerlinks li:eq(' + (idx) + ') a';
        }
    });
	
	$(".column").hover(
      function () {
	  	$(this).find('.imgblock').css("background-color","#ed1c24");
		$(this).find('.title').css("color","#ed1c24");
      }, 
      function () {
        $(this).find('.imgblock').css("background-color","#FFFFFF");
		$(this).find('.title').css("color","#000000");
      }
    );
	
	$("#homebanner_left, #homebanner_right").hover(
      function () {
	  	$(this).css("background-color","#000000");
      }, 
      function () {
        $(this).css("background-color","#FFFFFF");
      }
    );
	
	$("#listing img").hover(
      function () {
	  	$(this).css("background-color","#e2e2e2");
      }, 
      function () {
        $(this).css("background-color","#FFFFFF");
      }
    );
	
	//validate contact form
	$(document).ready(function(){
		jQuery.validator.messages.required = "";
		$("#validate_form").validate({});
	});
	
});
