$(document).ready(function(){
	$("#nav-one > li").hover(
		function(){ 
			$(this).children("a").addClass("hover");
			$(this).children("ul").fadeIn("slow");			
		},
		function() {
			$(this).children("ul").fadeOut("fast");
			$(this).children("a").removeClass("hover");
		});
		
	$('.lightbox').lightBox();
	
	$('.leftMenu a').hover(function() {
		$(this).next('.plus').show();
	}, function() {
		$(this).next('.plus').hide();
	});
});

