$(document).ready(function(){
	
	
	
	$("#innerwrap li > a").hover(
      function () {
			textFill = $(this);
			$("#textFill").append($(textFill).text());
	  }, 
      function () {
			$("#textFill").empty();
      }
    );
    
//	$("#nav li[class=on]").css({marginRight:"82px" });
	$("#innerwrap img:last").css({paddingRight:"0" })
	
});


