if(!jQuery.browser.msie){
	
jQuery(document).ready(function(){
	
	// FADE LOGO
	$('div.hdr_logo').hide();
	$('div.hdr_logo').fadeIn(2000);
	
	// FADE NAV OVERS
	var nav = jQuery("div.hdr_navi");
	
	nav.removeClass("nojs");
	
	var links = nav.find("a");
	
	links.wrapInner('<span class="text">');
	
	links.prepend($("<span>").addClass("over"));
	links.find("span.over").css({"opacity": 0, display: "block"});
	
	
	links.hover(
		function() {
			$(this).addClass("nav-over");
			$(this).find("span.over").animate({opacity:1},{duration:300, queue: false});
			
		},
		function() {
			$(this).removeClass("nav-over");
			$(this).find("span.over").animate({opacity:0},{duration:300, queue: false});
		}
	);
	
	//LINK COLORING
	//links.click(function() {
	//	links.removeClass("nav-over");
	//	$(this).addClass("nav-over");
	//});
	
	// FADE HOME BUTTON OVERS
	var buttonWrap = jQuery("div.btn-wrap");
	
	buttonWrap.removeClass("nojs");
	
	var buttons = buttonWrap.find("a");
	
	buttons.prepend($("<span>").addClass("over"));
	buttons.find("span.over").css({"opacity": 0, display: "block"});
	
	buttons.hover(
		function() {
			//$(this).addClass("nav-over");
			$(this).find("span.over").animate({opacity:1},{duration:300, queue: false});
			
		},
		function() {
			//$(this).removeClass("nav-over");
			$(this).find("span.over").animate({opacity:0},{duration:300, queue: false});
		}
	);
	

});
}
