$(document).ready(function() {
	
	$(".main_content_section").css("display", "none");
	$(".main_details_section").css("display", "none");

    $(".main_content_section").fadeIn(2000);
    $(".main_details_section").fadeIn(2000);
    
	$(".test_link").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$(".main_content_section").fadeOut(1000, redirectPage);		
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});

