$(document).ready(function(){ 

						  

						   $("#topMenu ul li.last-child:last-child").addClass("last-child");

						  

	})

$(function() {

	

	 $("#topMenu ul li").hover(

      function () {

        $(this).find('ul').css("display","block");

      }, 

      function () {

         $(this).find('ul').css("display","none");

      }

    );

	$("#topMenu ul li ul").hover(

      function () {

        $(this).parent().addClass('selected1');

		$(this).css("display","block");

      }, 

      function () {

        $(this).parent().removeClass('seledcted1');

      }

    );

});
