//Specific for the home page, show loader etc.

setTimeout (showBackground, 2000);

function showBackground(){
	jQuery("#skincontainer").fadeIn("slow", showMenu)
}

function showMenu() {
	jQuery("#skinmenu").fadeIn("slow", hideBackground)
}

function hideBackground(){
	jQuery("#skinloader").fadeOut("slow", showIcons)
}

function showIcons(){
	jQuery("#SocialMenu").addClass("HomeIcons").show();
}
