//Preloader
what_i_do = new Image(); 
what_i_do.src = "fileadmin/templates/img/box_what_i_do.jpg";
rent_me = new Image(); 
rent_me.src = "fileadmin/templates/img/box_rent_me.jpg";
hear_see = new Image(); 
hear_see.src = "fileadmin/templates/img/box_hear_see.jpg";
talk = new Image(); 
talk.src = "fileadmin/templates/img/box_talk.jpg";

//Hover
$(function() {
  $('.what_i_do').mouseover(function(){
    $('#box_what_i_do').css({ 'background' : 'url(fileadmin/templates/img/box_what_i_do.jpg)' });
  });
  $('.what_i_do').mouseleave(function(){
    $('#box_what_i_do').css({ 'background' : 'none' });
  });
  $('.rent_me').mouseover(function(){
    $('#box_rent_me').css({ 'background' : 'url(fileadmin/templates/img/box_rent_me.jpg)' });
  });
  $('.rent_me').mouseleave(function(){
    $('#box_rent_me').css({ 'background' : 'none' });
  });
  $('.hear_see').mouseover(function(){
    $('#box_hear_see').css({ 'background' : 'url(fileadmin/templates/img/box_hear_see.jpg)' });
  });
  $('.hear_see').mouseleave(function(){
    $('#box_hear_see').css({ 'background' : 'none' });
  });
  $('.talk').mouseover(function(){
    $('#box_talk').css({ 'background' : 'url(fileadmin/templates/img/box_talk.jpg)' });
  });
  $('.talk').mouseleave(function(){
    $('#box_talk').css({ 'background' : 'none' });
  });
});

