try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}; //ie 6 bg image fix


$(function(){
	$('#username').fillin('username');
	$('#password').fillin('password');
	
	$('#topnav li').hover(
		function(){
			$(this).addClass('li_hover');
		},
		function(){
			$(this).removeClass('li_hover');
		}
		
	);
	
});

