// --------------------------
//
// Sprites2 Navigation Script
//
//---------------------------

$(document).ready(function(){

	var section = "nav-" + ($("body").attr("id"));
	// Attach events to each child
	$('.nav').children().each(function(){		

		// Do not attach events to active children
		//if(!$(this).hasClass('active')){
		if (!($(this).attr("id") == section)){
			//hide the css defined :hover background
			$(this).children('a').css({background: "none"});
			
			// Mouseover
			$(this).hover(function() {
				$('<div style="display:none"></div>').prependTo(this).slideDown();		
			
			//Mouseout
			},function(){
				$(this).children('div').slideUp(function(){
					$(this).children('div').remove();
				});
			});
							
		}
	});
});