$(document).ready(function() {
	$('.mnu_item').each(
		function(intIndex) {
			$(this).bind('mouseenter', function() { $(this).toggleClass('mnu_over'); });
			$(this).bind('mouseleave', function() { $(this).toggleClass('mnu_over'); });
		}
	);
	$('#login').click(function() {
		$('#login_form').slideToggle(600);
	});
});
function checkLogin() {
	if (document.getElementById("username").value=='' || document.getElementById("password").value=='') {
    	Shadowbox.open({
        content:    '<div id="shad_txt"><img src="/admin/warning.png" align="absmiddle" /> Please enter a username and password</div>',
        player:     "html",
        title:      "Error",
        height:     50,
        width:      300
    	});
	return false;
	}
$.getScript("ajax_login.php?username="+document.getElementById("username").value+"&password="+document.getElementById("password").value+"&remember="+document.getElementById("remember").checked);
return false;
}
function NMLogin() {
$.getScript("ajax_login.php?nm=1");
return false;
}
Shadowbox.init({
    skipSetup: true
});
