$(document).ready(function(){

//    $("input:text").each(function(i){
//        if(!$(this).hasClass("TextboxStyle1")){
//            alert("does not have the class");
//            $(this).addClass("TextboxStyle1");
//        }
//        else{
//            alert("has it@");
//        }
//    });
    
    $(":text, :password").focus(function(){
        $(this).removeClass("TextBoxStyle1").addClass("TextBoxStyle1Hover");
    });
        
    $(":text, :password").blur(function(){
        $(this).removeClass("TextBoxStyle1Hover").addClass("TextBoxStyle1");
    });
    
    $(":button, :submit").mouseover(function(){
        $(this).removeClass("ButtonStyle1").addClass("ButtonStyle1Hover");
    });
        
    $(":button, :submit").mouseout(function(){
        $(this).removeClass("ButtonStyle1Hover").addClass("ButtonStyle1");
    });
        
});
