$(document).ready(function()
{
	$('.customMenu a').mouseenter(function(ev)
	{
		$(ev.currentTarget).css({
			backgroundPosition: '0px ' + '-' + $(ev.currentTarget).height() + 'px'
		});
	});
	
	$('.customMenu a').mouseleave(function(ev)
	{
		$(ev.currentTarget).css({
			backgroundPosition: '0 0'
		});
	});
});
