var currentURL = window.location.href;
$(document).ready(function () {
	if (currentURL == "http://thunderfistproductions.com/") {
	$("#container").hide();
	};
	if (currentURL != "http://thunderfistproductions.com/") {
	$("#container").fadeIn(1200);
	};
 }); 

/* $(document).ready(function () {
	if (currentURL != "http://thunderfistproductions.com/") {
	$("#bg").hide();
	};
 }); */
$(function() {
	$('#bg').mouseenter(function() {
		$('#bg').fadeOut(600, function() { 
			$('#container').fadeIn(1200);
			});
		});
});
/* $(function() {
	$('#nav li').mouseenter(function() {
		$('#nav ul ul li').show();
		});
	});
*/
/* $(function() {
	$('#nav li, #header').click(function() {
	if ($('#about').css("display") == "block")
		{
		$('#about').toggle(900);
    	};
    
    if ($('#work').css("display") == "block")
		{
		$('#work').toggle(900);
    	};
    
    if ($('#resume').css("display") == "block")
		{
		$('#resume').toggle(900);
    	};
      if ($('#edu').css("display") == "block")
		{
		$('#edu').toggle(900);
    	};
	if ($('#tayber').css("display") == "block")
    	{
    	$('#tayber').toggle("fast");
     	};
     if ($('#web-graphic').css("display") == "block")
    	{
    	$('#web-graphic').toggle(900);
     	};
     if ($('#skills').css("display") == "block")
    	{
    	$('#skills').toggle("fast");
     	};
     });
});

$(function() {
	$('#header').click(function() {
		$('#tayber').toggle(900);

	});
});
$(function() {
	$('#navtop li:first').click(function() {
		$('#about').toggle(900);

	});
});
$(function() {
	$('#navtop li:nth-child(2)').click(function() {
		$('#resume').toggle(900);

	});
});
$(function() {
	$('#navtop li:nth-child(3)').click(function() {
		$('#edu').toggle(900);

	});
});

$(function() {
	$('#navbottom li:first').click(function() {
		$('#web-graphic').toggle(900);
	});
});
$(function() {
	$('#navbottom li:nth-child(2)').click(function() {
		$('#skills').toggle(900);
	});
});



*/

