$(document).ready(function() {
						   
  $('img.tractor').mouseover(function() {
	$('#tractor_drop').show();
	return false;
  });
  $('#tractor_drop').mouseover(function() {
	$('#tractor_drop').show();
	return false;
  });
  $('#tractor_drop').mouseout(function() {
	$('#tractor_drop').hide();
	return false;
  });  
  $('img.tractor').mouseout(function() {
	$('#tractor_drop').hide();
	return false;
  });
  
  $('img.combine').mouseover(function() {
	$('#combine_drop').show();
	return false;
  });
  $('#combine_drop').mouseover(function() {
	$('#combine_drop').show();
	return false;
  });
  $('#combine_drop').mouseout(function() {
	$('#combine_drop').hide();
	return false;
  });  
  $('img.combine').mouseout(function() {
	$('#combine_drop').hide();
	return false;
  });
  
  $('img.harvest').mouseover(function() {
	$('#harvest_drop').show();
	return false;
  });
  $('#harvest_drop').mouseover(function() {
	$('#harvest_drop').show();
	return false;
  });
  $('#harvest_drop').mouseout(function() {
	$('#harvest_drop').hide();
	return false;
  });  
  $('img.harvest').mouseout(function() {
	$('#harvest_drop').hide();
	return false;
  });

});
