$ (document).ready(function() {
						   		$ ('li#twitter').hover(showElement1,hideElement1);
								$ ('li#facebook').hover(showElement2,hideElement2);
								$ ('li#vkontakte').hover(showElement3,hideElement3);
								$ ('li#skype').hover(showElement4,hideElement4);
								$ ('li#icq').hover(showElement5,hideElement5);
								$ ('li#phone').hover(showElement6,hideElement6);
								
								$ ('li#verstka').hover(showElement7,hideElement7);
								$ ('li#web').hover(showElement8,hideElement8);
								$ ('li#poligraphy').hover(showElement9,hideElement9);
								$ ('li#flash').hover(showElement10,hideElement10);
								$ ('li#retouch').hover(showElement11,hideElement11);
								$ ('li#video').hover(showElement12,hideElement12);
						   
						   });

function showElement1(){$ ('li#twitter>p').fadeIn('fast');}
function hideElement1(){$ ('li#twitter>p').fadeOut('normal');}
		
function showElement2() {	$ ('li#facebook>p').fadeIn('fast');}
function hideElement2()	{$ ('li#facebook>p').fadeOut('normal');}

function showElement3(){$ ('li#vkontakte>p').fadeIn('fast');}
function hideElement3(){$ ('li#vkontakte>p').fadeOut('normal');}

function showElement4(){$ ('li#skype>p').fadeIn('fast');}
function hideElement4(){$ ('li#skype>p').fadeOut('normal');}

function showElement5(){$ ('li#icq>p').fadeIn('fast');}
function hideElement5(){$ ('li#icq>p').fadeOut('normal');}

function showElement6(){$ ('li#phone>p').fadeIn('fast');}
function hideElement6(){$ ('li#phone>p').fadeOut('normal');}

function showElement7(){$ ('li#verstka>p').fadeIn('slow');}
function hideElement7(){$ ('li#verstka>p').fadeOut('fast');}

function showElement8(){$ ('li#web>p').fadeIn('slow');}
function hideElement8(){$ ('li#web>p').fadeOut('fast');}

function showElement9(){$ ('li#poligraphy>p').fadeIn('slow');}
function hideElement9(){$ ('li#poligraphy>p').fadeOut('fast');}

function showElement10(){$ ('li#flash>p').fadeIn('slow');}
function hideElement10(){$ ('li#flash>p').fadeOut('fast');}

function showElement11(){$ ('li#retouch>p').fadeIn('slow');}
function hideElement11(){$ ('li#retouch>p').fadeOut('fast');}

function showElement12(){$ ('li#video>p').fadeIn('slow');}
function hideElement12(){$ ('li#video>p').fadeOut('fast');}
		




$(document).ready(function() {
      	$("body").css("display", "none");
    });
$(document).ready(function() {
            $("body").css("display", "none");
      	    $("body").fadeIn(1000);
    });

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

    $("body").fadeIn(1000);

	$("a.fade").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(1000, redirectPage);
	});

	function redirectPage() {
		window.location = linkLocation;
	}
});




