$(document).ready(function(){	// External Window Links	$('a.new-window').click(function(){		window.open(this.href);		return false;	});			// image swap effects	$('.navigationItem').mouseover(function(){		if ($(this).attr('id').indexOf("_") == -1)		{			$(this).attr('src','/images/global/' + $(this).attr('id') + '_on.gif');		}	});		$('.navigationItem').mouseout(function(){		if ($(this).attr('id').indexOf("_") == -1)		{			if ($(this).hasClass('navigationItemOn')){			}else{				$(this).attr('src','/images/global/' + $(this).attr('id') + '.gif');				}		}	})});
