//<![CDATA[
$(document).ready(function(){
	// add class for IE focus styles						   
    $('input[@type="text"], input[@type="password"]')
        .focus(function(){
            $(this).addClass('iefocus');
			/*$(this).select();*/
	})
	.blur(function(){
		$(this).removeClass('iefocus');
	});
	
	// select first input element
	//$('ol input:first').select(); // this causes problems when tabbing to next element in IE6/7 - next tab goes to address bar
	//$('label strong + input').select();
});
//]]>