// common functions
$(document).ready(function() 
{
   
   $("input:text,input:password").focus(function () {
        $(this).css("border","1px solid #9F9F9F");
   });
    
   $("input:text,input:password").blur(function () {
   		//console.log('blur fired');
   		$(this).css("border","1px solid #CCCCCC");
   });
   
   //hide the all of the element with ID thescript
  $("#thescript").hide();

});
