//run fun
$(document).ready(function() {
	if ($.browser.msie) {
		if (parseInt($.browser.version) < 7) {
			$('a.pngfix').hover(function() {
				$(this).addClass('hover');
			}, function() {
				$(this).removeClass('hover');
			});
		}
	}
	
	$('.login .form li').each(function() {
		$('input', this).blur();
		if ($('input', this).val() != '') {
			$('label', this).hide();
		}
		$(this).click(function() {
			$('label', this).hide();
			$('input', this).focus();
		});
	});
});

