$(document).ready(function() {
	// Adrian Palmer's Make Nice Input function
	$('.mni').makeNiceInput();
	
	// Controls the hover states of the main menu
	$('#mainmenu ul li').mouseover(function(){ $(this).addClass('over') });
	$('#mainmenu ul li').mouseout(function(){ $(this).removeClass('over') });
	
	// Controls the hover states of the sub menu
	$('.submenu li').mouseover(function(){ $(this).addClass('active') });
	$('.submenu li').mouseout(function(){ $(this).removeClass('active') });
});
