					$(function() {
						
						
						$('#gallery a.gallery').lightBox();
						
						
 	 $(".left_menu li").hover(function(){
									  
			if($(this).children().is("ul")) { 			  
				$(this).children("ul").slideDown(400);
				return false;
			}
						   
         },
		 function(){
			 
			// $(this).children("ul").slideUp(200);	 
	 
		 });
	
 	  $(".left_menu").hover(function(){
         },
		 function(){
			 
			 $(".left_menu ul ul").slideUp(200);	 
	 
		 });
	
					
					
    $(".top_menu a ").hover(function () {

        if ($(this).className != "current" && (!($(this).next().is("span")))) {

            $(this).parent().append("<span></span>");
            $(this).next("span").slideDown(300);

        };


    }, function () {

        $(this).next("span").slideUp(300, function () {

            $(this).remove("span");

        });

    });
					
					
					
					
					});
