jQuery.noConflict(); 

jQuery(document).ready(function() {
	jQuery('ul#property-menu a').click(function() {
		jQuery(this).css('outline','none');
		jQuery('ul#property-menu .current').removeClass('current');
		jQuery(this).parent().addClass('current');
		
		var filter = jQuery(this).text().toLowerCase().replace(' ','-');
			

			jQuery('.property-info-tab').fadeOut('slow');
			jQuery('.link-banner-strip').fadeOut('slow');
			jQuery('.link-block').fadeOut('slow');
			jQuery('ul#property-info').fadeOut('slow',function(){
				jQuery('ul#property-info li.tofilter').each(function() {
					if(!jQuery(this).hasClass(filter)) {
						jQuery(this).addClass('hidden');
					}
					else{
						jQuery(this).removeClass('hidden');
					}
					jQuery('ul#property-info').fadeIn('slow');
					jQuery('.property-info-tab').fadeIn('slow');
					jQuery('.link-banner-strip').fadeIn('slow');
					jQuery('.link-block').fadeIn('slow');
				});
			});
	
		
		return false;
	});
});