jQuery(function()
{
	$('.tab.buy a').click(function()
	{
		$('.search.buy').css('display', 'block');
		$('.search.rent').css('display', 'none');
		return false;
	});
	$('.tab.rent a').click(function()
	{
		$('.search.buy').css('display', 'none');
		$('.search.rent').css('display', 'block');
		return false;
	});
	$('.thumbnails a').attr('rel', 'gallery').fancybox();
	
	/**
	 * Automatically select New Homes in the
	 * location drop-down on New Homes pages
	 */
	$('.template-9, .template-24')
		.find('select[name="searchAreas[]"]')
		.find('option')
			.removeAttr('selected')
		.end()
		.find('option[value="8652"]')
			.attr('selected', 'selected');
		
		
	// Countdown	
	
	$("#countdown").countdown({
        'date' : "march 24, 2012"
    });
	
	
	function blink(selector){
		$(selector).fadeOut('slow', function(){
		$(this).fadeIn('slow', function(){
		blink(this);
		});
		});
	}

blink('#countdown');

$('.home-award-slider').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});


	
});
