// JavaScript Document
jQuery(function(){
//$(document).ready(function(){
	divs = [];
	divs.push("#home", "#bio", "#media", "#press", "#pdr", "#contact");
	
	jQuery.each(divs, function(j){
		var item = divs[j];
		var overlay = divs[j]+"-overlay";
		
		var tempname = divs[j].replace("#","");
		var imageloc = "url(images/nav/"+tempname+".png)";
		
		var thispage = divs[j].replace("#",".current-");

		if ($(thispage).length > 0) {
			$(item).css({backgroundPosition: '0 -246px'});
			$(item).mouseover(function(){
				$(this).stop().animate({backgroundPosition:"(0 0px)"}, 300);
			});
			
			$(item).mouseout(function(){
				$(this).stop().animate({backgroundPosition:"(0 -246px)"}, 300);
			});
		}
		else {
			$(item).css({backgroundPosition: '0 0'});
			$(item).mouseover(function(){
				$(this).stop().animate({backgroundPosition:"(0 -246px)"}, 300);
			});
			
			$(item).mouseout(function(){
				$(this).stop().animate({backgroundPosition: '(0 0)'}, 300);
			});
		}
	});
});