function css() {
	

	/**
	 * IE6, IE7
	 */
	 	
	if($.browser.msie){
		$('input[@type="password"], input[@type="text"], textarea, a').focus(function(){ $(this).addClass('focus'); });
		$('input[@type="password"], input[@type="text"], textarea, a').blur(function(){ $(this).removeClass('focus'); });
	
	/*
		$('').hover(function(){
			$(this).addClass('hover');
		}, function(){
			$(this).removeClass('hover');		
		});
	*/
		

		$('hr.hr').wrap('<span class="hr"></span>').hide();
		
	}

}


$(document).ready(css);