$(document).ready(function(){
						   
	$(".soldprop tr:even").addClass("even");
						   
	//Drop Down Menu
		$("ul.sf-menu").superfish({				
			delay:       500,                            // one second delay on mouseout
			animation:   {opacity:'show'},  // fade-in and slide-down animation
			speed:       'fast'						  
		});
		
	//Lightbox
		SexyLightbox.initialize({color:'black', dir: '/includecommon/scripts/jQuery/lightbox2/sexyimages'}); 
		
	//prop Search Tabs
		$('.tabs').tabs();
		
	//Adds class of odd to odd # dl
		$('.details dl:odd').addClass('odd');	
		
	//Image Gallery	
		$thumbheight = 67;
		//$windowH = $(window).height();
		
		/* setup thumbnails */
		$('.ad-thumbs img').height($thumbheight);
		$('.ad-thumbs').height($('.ad-thumbs img:first').outerHeight());
		//$('.ad-image-wrapper').height($windowH - $('.ad-thumbs').height() -60);
		$('.ad-gallery').adGallery();
		
		$('#contact-us .accordion').accordion();
		
		$('.form input:checkbox').addClass('checkbox');
		$('.form input:radio').addClass('radio');
		
	//Text selector
		$('.list ul li:contains("No Open Houses Found")').addClass('nonefound'); 
		
		$('#callouts #latestnews ul li:last').css('border','none');
		
});