$(document).ready(function() {
	$(".navList a").click(function (event) {
		 event.preventDefault();
		 var url = $(this).attr('href');
		 fadeOutPage(url);
		 $('#activeSection a').css({backgroundColor: "#fff"});
		 $('#activeSection a').css({color: "#369"});

    });
	$(".homeLink a").click(function (event) {
		 event.preventDefault();
		 var url = $(this).attr('href');
		 fadeOutPage(url);
		 $('#activeSection a').css({backgroundColor: "#fff"});
		 $('#activeSection a').css({color: "#369"});
		 
    });
	$('.backLink').hide();
	setTimeout(function() {
	     $('.backLink').fadeIn(300);
    }, 2000 );
	$(".backLink a").click(function (event) {
	     event.preventDefault();
		 var url = $(this).attr('href');
		 fadeOutPage(url);
		 $('#activeSection a').css({backgroundColor: "#fff"});
		 $('#activeSection a').css({color: "#369"});

    });	
});

function fadeOutPage(url){
    var link = url;
	$('#flashContent').empty();
    $('.backLink').hide();
	$('#rotatorContainer').hide(300);
    $('.content_right').hide();
    $('#rightBlock').fadeOut(300);
	$('.content_left').fadeOut(300);
    $(".inner_content").fadeOut(300);
	$('.inner_content_wide').fadeOut(300);
	setTimeout( function() {
        document.location.href = link;
    }, 300 );
}



