	$(document).ready(function(){

	//Load Content
	//setTimeout('pageLoad()',1000);	
	
	// External Window Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

	// Popup Window
	$('a.interactive-window').click(function(){
		window.open(this.href,"_blank","width=970,height=751,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
		return false;
	});
	
// Navigation Effects
	$('.navigationItem').mouseover(function(){
		if ($(this).attr('id').indexOf("_") == -1)
		{
			$(this).attr('src','/images/global/navigation/' + $(this).attr('id') + '_on.gif');
		}
	});
	
	$('.navigationItem').mouseout(function(){
		if ($(this).attr('id').indexOf("_") == -1)
		{
			$(this).attr('src','/images/global/navigation/' + $(this).attr('id') + '.gif');
		}
	});
	
	// Floorplans Navigation Effects
	$('.plansNavigationItem').mouseover(function(){
		if ($(this).attr('id').indexOf("_") == -1)
		{
			$(this).attr('src','/images/new-homes/navigation/' + $(this).attr('id') + '_on.gif');
		}
	});
	
	$('.plansNavigationItem').mouseout(function(){
		if ($(this).attr('id').indexOf("_") == -1)
		{
			$(this).attr('src','/images/new-homes/navigation/' + $(this).attr('id') + '.gif');
		}
	});

});

//function pageLoad()
//{
		//$('#content-about').fadeIn(1000);		
		//$('#content-available').fadeIn(1000);
		//$('#content-products').fadeIn(1000);
		
//}