jQuery(document).ready(function(){
  jQuery("#nav a").hover(function(){
    
    var bg = jQuery(this).attr("class");
    jQuery("#content").css({"background": "url(images/backgrounds/"+bg+".jpg) no-repeat top right"});
  },function(){});
  
});
