(function ($) {
	$(function () {
		var agilentButton = $('#visitAgilentButton');
		$('div.content', agilentButton).hide();
		agilentButton
			.bind('mouseover', function () {
				$('div.content', this).show();
				$(this).css({'background-position' : '0 -40px'});
			})
			.bind('mouseout', function () {
				$('div.content', this).hide();
				$(this).css({'background-position' : '0 0'});
			});
	});
})(jQuery);
