$(document).ready( function() {
	$("#loginpanel img").hover(function() {
		$(this).attr("src", $(this).attr("src").split("_off.").join("_on."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("_on.").join("_off."));
	});
	$("#btnLogin").hover(function() {
		$(this).attr("src", $(this).attr("src").split("_off.").join("_on."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("_on.").join("_off."));
	});
	$("#form input[type!='image']").focus(function() {
		$(this).css({'background-color' : '#EBF6CC', 'border' : '1px solid #A3D311'});
	});
	$("#form input[type!='image']").blur(function() {
		$(this).css({'background-color' : '#FFFFFF', 'border' : '1px solid #DDDDDD'});
	});
	$('#username').focus();
});


