// Page
$.ui.page.subclass('ui.home_page', {
	_init: function() {
		this.createForm();
	}, 
	createForm: function() {
		this.pageBody.find('#ResidentalListingSearchFormComponent').form();
		this.pageBody.find('#RentalListingSearchFormComponent').form();
		this.pageBody.find('#contactus_form').form();
	}
});
/********* Init *********/
$(function(){
	$('.searchTabsMenu > ul').tabs({
		select: function(event, ui) {
			if(ui.index == 2) {
				window.location = siteUrl + '/search/index/#mapsearch-tab';
				return false;
			}
		}
	});
	$(document).home_page();
	$('#featured-listing-carousel li img').qtip({
		position: {
	      corner: {
	         target: 'topMiddle',
	         tooltip: 'bottomMiddle'
	      }
	   }, 
	   style: { 
	      name: 'cream', 
	      tip: {
		         corner: 'bottomMiddle', 
		         color: '#f9e98e',
		         size: {x: 20, y : 8}
	   	}
	   }
	});
	jQuery('#featured-listing-carousel').jcarousel();
	$('#search-box').removeClass('hidden');
});