$(function() {
	$('div[id=wrapper] *[id^=hvbtn-]').each(function() {
		$(this).hover(
			function() {
				$(this).css('background-position', '0 -'+$(this).css('height'));
				$(this).css('cursor', 'hand');
				$(this).css('cursor', 'pointer');
				$(this).css('background-color', '#F8FFBF');
			},function() {
				$(this).css('background-position', '');
				$(this).css('cursor', '');
				$(this).css('background-color', '');
			}
		);
	});

	$('div[id=wrapper] *[className^=hvbtn-]').each(function() {
		$(this).hover(
			function() {
				$(this).css('background-position', '0 -'+$(this).css('height'));
				$(this).css('cursor', 'hand');
				$(this).css('cursor', 'pointer');
			},function() {
				$(this).css('background-position', '');
				$(this).css('cursor', '');
			}
		);
	});

});
