$(document).ready(
function() 
{
	$('#main_link li img').each(function()
	{
		if ( !$(this).parent().parent().hasClass('current_page') )
			$(this).css('margin-top','-34px');
		$(this).hover(
			function()
			{
				if ( !$(this).parent().parent().hasClass('current_page') )
					$(this).css('margin-top','');
			},
			function()
			{
				if ( !$(this).parent().parent().hasClass('current_page') )
					$(this).css('margin-top','-34px');
			}
		);
	});
	
	$('.button_img').each(function()
	{
		var h = $(this).height() / 2;
		$(this).hover(
			function()
			{
				$(this).css('margin-top','-' + h + 'px');
			},
			function()
			{
				$(this).css('margin-top','');
			}
		);
	});
	
	$('.button').each(function()
	{
		$(this).hover(
			function()
			{
				$(this).css('background-position','0 100%');
			},
			function()
			{
				$(this).css('background-position','0 0');
			}
		);
	});
	
});




