//$.preloadImages.add(['fileadmin/templates/gfx/GB_About.jpg', 'fileadmin/templates/gfx/GB_News.jpg', 'fileadmin/templates/gfx/GB_Releases.jpg', 'fileadmin/templates/gfx/GB_Artists.jpg', 'fileadmin/templates/gfx/GB_Contact.jpg']);


$(document).ready(function(){
  
		$("#navi a").hover(
			function(){
			 //var section = $(this).text();
			 var section = $(this).attr('class');
        $("#container_start").css({'background-image' : 'url(fileadmin/templates/gfx/GB_' + section + '.jpg)'});
      },
			
			function(){
        $("#container_start").css({'background-image' : 'url(fileadmin/templates/gfx/home.gif)'});
      }
			
      );
      
     //$('#content').jScrollPane();

      
});