$(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.popup').click(function(){
		window.open(this.href,"_blank","width=725,height=529,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');
		}
	});

});

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