jQuery(function($){     	
    $(".textbox").focus(function() {
         $(this).css('border','1px solid orange');
    });
    $(".textbox").blur(function() {
         $(this).css('border','1px solid #926116');
    });	  
    $(".textarea").focus(function() {
         $(this).css('border','1px solid orange');
    });
    $(".textarea").blur(function() {
         $(this).css('border','1px solid #926116');
    });	
    $(".select").focus(function() {
         $(this).css('border','1px solid orange');
    });
    $(".select").blur(function() {
         $(this).css('border','1px solid #926116');
    });
	$('div#buttons').corner({
		tl: { radius: 6 },
		tr: { radius: 6 },
		bl: { radius: 6 },
		br: { radius: 6 },
		antiAlias: true,
		autoPad: true,
		validTags: ["p"] 
	});
	$("#invia").hover(
	  function () {
		$(this).css("backgroundPosition", "left bottom");
	  }, 
	  function () {
		$(this).css("backgroundPosition", "left top");
	  }
	);
});

