//Add special style to the userpath for the last child in IE6
/*
$("div.lucidpayment_user_path a:last-child")
	.css(function () {
		  $(this).addClass("lastchild");
		})
	.hover(function () {
		  $(this).addClass("lastchildhover");
		}, function () {
		  $(this).removeClass("lastchildhover");
		});
*/

//Add classes for IE6 to form buttons so we can stylize then individualy
$(document).ready(function() { 
    $("input[@type=password], input[@type=text]").addClass("form_input_type_text");
    $("input[@type=password], input[@type=text]").hover(function () {
		  $(this).addClass("form_input_type_text_hover");
		}, function () {
		  $(this).removeClass("form_input_type_text_hover");
		});
    $("input[@type=button], input[@type=submit], input[@type=reset]").addClass("form_input_type_button");
    $("input[@type=button], input[@type=submit], input[@type=reset]").hover(function () {
		  $(this).addClass("form_input_type_button_hover");
		}, function () {
		  $(this).removeClass("form_input_type_button_hover");
		});

    $("input[@type=checkbox], input[@type=radio]").addClass("form_input_type_checkbox");
    $("input[@type=checkbox], input[@type=radio]").hover(function () {
		  $(this).addClass("form_input_type_checkbox_hover");
		}, function () {
		  $(this).removeClass("form_input_type_checkbox_hover");
		});

/*
    $("input[@type=password], input[@type=text], textarea").focus(function() {
        $(this).addClass("focus"); 
                //focus class provides a hook to alert the user 
    });
    
    $("input[@type=password], input[@type=text], textarea").blur(function(){
        if ($(this).find(".focus")) {
            $(this).removeClass("focus");
        }
    });
*/
});
