		$(document).ready(function(){
			$("#footer #f-links a:last-child").addClass("last");
			 
			 //subnav menu accordian
			 $('#subnav ul').hide();  // hides all subnav ul
			 $('#subnav li.current ul').show();  // shows current ul
    		 $('#subnav li a').click(function(){
				$(this).next('ul').slideToggle('fast'); //toggles hide show on ul
       		});
			 	 

				//footer image enlargement
			$('.f-feature img').hover(function(){
					  $(this).stop().animate({width: '153px',height: '95px'},300);},
							function(){
						$(this).stop() .animate({width: '133px', height: '75px'},150);
			});


			 //footer swap
			 //$(".f-feature .on").hide();
				//$(".f-feature").hover(
					//function(){
						//$(this).find(".off,.on").toggle();
					//});


		});
