﻿/// <reference path="jquery-1.4.1.js"/>
/// <reference path="jquery-ui-1.8.2.custom.min.js"/>


// Document Ready
$(document).ready(function () {

	/*** NAV MENU && Header ***/
	$(".navContainer ul li a, .headerContainer a").hover(
		function () {
			$(this).stop().fadeTo(300, "0.5");
		},
		function () {
			$(this).stop().fadeTo(500, "1.0");
		}
	);
	$(".navContainer ul li").hover(
		function () {
			//$(this).children("ul").slideDown("fast");
			$(this).children("ul").show();
			//$(this).children("ul").animate({ bottom: "-34px" }, 200);
			//$(this).children("ul").animate({ left: "-10px" }, 300);
		},
		function () {
			//$(this).children("ul").slideUp("fast");
			$(this).children("ul").hide();
			//$(this).children("ul").animate({ bottom: "20px" }, 200);
			//$(this).children("ul").animate({ left: "-999px" }, 300);
		}
	);

	/*** END NAV MENU && Header***/

	/*** SOCIAL MEDIA ***/
	$(".socialmediaContainer").hover(
		function () {
			$(this).stop().animate({ right: "0px" }, 300);
		},
		function () {
			$(this).stop().animate({ right: "-15px" }, 400);
		}
	);
	/*** END SOCIAL MEDIA ***/
});


