// JavaScript Document
//Navigator FadeIn
	
$(document).ready(function(){	
	$("#header").fadeIn("slow")
});


//Navigator Fade

$(document).ready(function(){

	$(".menu a").hover(function() {
		$(this).next(".menu em").fadeIn(60);
	}, function() {
		$(this).next(".menu em").fadeOut(400);
	});
});

// OWL
$(document).ready(function(){
		
	$("#hireme a").hover(function() {
		$(this).next("#hm").animate({opacity: "show", top: "-35", left:"-80"}, "fast");
	}, function() {
		$(this).next("#hm").animate({opacity: "hide", top: "0", left:"0"}, "fast");
	});
});



