$(document).ready(function()
{
	$(window).resize(function () { 
		$("div#bg img").css("height", $(window).height());
	});


	$("ul#nav").find("li.dir").hover(function()
	{

		$(this).addClass("dir-on");
		$(this).children("ul").fadeIn(100);
	}, function()
	{
		$(this).removeClass("dir-on");
		$(this).children("ul").fadeOut(100);
	});
	
	// contact us form show
	$("a#contact-link").click(function()
	{
		$("#contact-wrapper").fadeIn();	
	});
});

