$(document).ready(function(){
    
    $(".main_menu li.home").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.blend").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_blend.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.recep").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_recep.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.prod").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_prod.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.blogi").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_blog.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.whereto").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_prod.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
    $(".main_menu li.last").hover(function () {
      $(this).css({'background' : 'url(/images/blenders/menu_hover_faq.gif) no-repeat center bottom'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
	$(".main_menu li.first").hover(function () {
      $(this).css({'background' : 'none'});
    }, function () {
      var cssObj = {
        'background' : 'none'
      }
      $(this).css(cssObj);
    });
  });
