$(document).ready(function(){ 
		   $(".leftArea .box-01 .mid ul li:last-child").addClass("last-child"); 
           $("#footer ul li:last-child").addClass("last-child"); 	
		   
		  //
		 $("#topMenu .mid li").hover(
		  function () {
			 $(this).addClass("selected1");
			$(this).children("ul").css("display","block");
			  },
		  function () {
			$(this).children("ul").css("display","none");
			$(this).removeClass("selected1");
			
		  });
		 
		 //
		   var options2 = {
            caption:    false,
            navigation: 'permanent',
            direction:  'left'
        	}
        	var options3 = {
            caption:    'permanent',
            opacity:    1
        	}
    
        $('#ppy1').popeye();
        $('#ppy2').popeye(options2);
        $('#ppy3').popeye(options3);
});

