$(document).ready(function(){
	//HOME PAGE LIST
	$(".list li").has('ul').addClass("parent");
	$(".list li ul").addClass("more");
    $('.list li').click(
        function () {
            /*show its submenu*/
			$("ul", this).slideToggle();
        }
    );
    
	//MENU
    $('.menu li').hover(
        function () {
            //show its submenu
            $('ul', this).slideToggle(500);
 
        },
        function () {
            //hide its submenu
            $('ul', this).hide();       
        }
    );
    
   //JqueryPlay
    $("#photo").click(
        function () {
                $(".bigView").not(this).fadeOut();
			if( $('.bigView', this).is(":visible") ) {
			    $('.bigView', this).fadeOut();
			}else {
			    $('.bigView', this).fadeIn();
			}
	    }
    ).mouseout(
		 function(){
		     $('.bigView', this).fadeOut()
		  }
	);
});
