$(document).ready(function(){
	$(document).hover(function(){
		$("#drop_down").hide();
	});
    $(".solutions").hover(function () {
      $("#drop_down").stop(true).show();
    });
	$('.off').hover(function(){$("#drop_down").hide();});
	$('.support').hover(function(){$("#drop_down").hide();});	
	$("#drop_down").hover(function(){
		$("#drop_down").show();
		},function(){
			$("#drop_down").hide();
	});
	$('.hitbox').hover(function(){
		$('.solutions').css({'background':'url(images/solutions.jpg) bottom center no-repeat'});
		
	},function(){
		$('.solutions').css({'background':'url(images/solutions.jpg) top center no-repeat'});
	});
});
