  $(document).ready(function()
  {
  	$(".link_wrap").bind("mouseover", function() 
  		{
  		$(this).children(".left_bg").css("background", "url(http://www.pompenverhuur.nl/public/images/left_menu_bg.jpg) no-repeat top left");
    	$(this).children(".right_bg").css("background", "url(http://www.pompenverhuur.nl/public/images/right_menu_bg.jpg) no-repeat top left");
   		$(this).children(".menu_link").css("background", "url(http://www.pompenverhuur.nl/public/images/core_menu_bg.jpg) repeat-x top left");		
   		$(this).children(".left_bg_home").css("background", "url(http://www.pompenverhuur.nl/public/images/home_menu_bg.jpg) no-repeat top left");
  		} );
$(".link_wrap").bind("mouseout", function() 
  		{
  		$(this).children(".left_bg").css("background", "");
    	$(this).children(".right_bg").css("background", "");
   		$(this).children(".menu_link").css("background", "");	
   		$(this).children(".left_bg_home").css("background", "");			
  		} );
 }
 );