// code for navigation

jQuery(function($) {

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

		$("#navigation .sub").parent().hover(function(){
			$(this).children(".sub").fadeIn('medium'); // show the sub menu
		},function(){
			$(this).children(".sub").hide(); // hide the sub menu
		});		
		$("#navigation .sub").hover(function(){
  			   $(this).parent().children("a").addClass('hover2');
    	 },function(){
 			   $(this).parent().children("a").removeClass('hover2');
  		 });
});