//////////////////////////////////////////////////////////////

// Hover jQuery magic
$(document).ready(function() {
	$(".nav-link a").hoverize();
	$(".downloads-link").hoverize();
	$("footer a").hoverize();
});

// Hover binder
$.fn.hoverize = function() {
	$(this).hover(
		function() { $(this).addClass("hover"); },		// over
		function() { $(this).removeClass("hover"); }	// out	
	);
}

//////////////////////////////////////////////////////////////

// Assign to dropdown classed objects
// Set dropdrowns @ appropriate height
$(document).ready(function() {
	$("header .dropdown").each(function() {
		$(this).dropdown();
		$(this).find(".nav-level1").css({top:-($(".nav-level1").outerHeight())});
	});
});

// Dropdown hover function
$.fn.dropdown = function() {
	$(this).hover(
		function() {
			$(this).find(".nav-level1")
				.css({display:"block","z-index":50})
				.animate({top:0},"fast");
		},
		function() {
			$(this).find(".nav-level1")
				.css({"z-index":49})
				.animate({top:-($(this).find(".nav-level1").outerHeight())},"fast", function(){
					$(this).css({display:"none"});
				});
		}
	);
}

//////////////////////////////////////////////////////////////
