////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Southland Custom Homes Javascript functions
// This file includes a collection of functions for use on the Southland site
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$(function()
{
	/*if($('#location_box').length > 0) {
		$('#location_box div a img').hover(show_location,hide_location);
	}*/

	if($('#home_specials').length > 0) {
		setTimeout('setInterval(switch_special,10000)',25000);
	}

});

function show_location()
{
	$(this).parent().siblings('p').show();
}

function hide_location()
{
	$(this).parent().siblings('p').hide();
}

function switch_special()
{
	var current_special = $('#home_specials > div:visible');
   var next_special = current_special.next().attr('tagName') != 'DIV' ? current_special.siblings('.home_special:first') : current_special.next();

   // display header
   $('#home_specials > img:hidden').fadeIn();

   current_special.fadeOut();
   next_special.fadeIn();
}