$(document).ready(function() {
	//alert("jq is onboard");
	$('.menubutton').mouseover(function(){
		//alert("ouch");
		var thisButton=$(this).attr('id');
		//turn off all buttons
		$('.menubutton').each(function(){
			$(this).removeClass('currentbutton');
		});
		//turn on this button
		$('#'+thisButton).addClass('currentbutton');
	});
	$('.menubutton').mouseout(function(){
		//turn off all buttons
		$('.menubutton').each(function(){
			$(this).removeClass('currentbutton');
		});
		//turn on currentbutton
		var topbutton=currentButton + 'top';
		var bottombutton=currentButton + 'bottom'
		$('#'+topbutton).addClass('currentbutton');
		$('#'+bottombutton).addClass('currentbutton');
	});
});
