jQuery.noConflict();

jQuery(function($){
	$(function($){     	
	    $(".textbox").focus(function() {
	         $(this).css('border','1px solid #A89411');
	    });
	    $(".textbox").blur(function() {
	         $(this).css('border','1px solid #C8C8C8');
	    });	  
	    $(".textarea").focus(function() {
	         $(this).css('border','1px solid #A89411');
	    });
	    $(".textarea").blur(function() {
	         $(this).css('border','1px solid #C8C8C8');
	    });	
	    $(".select").focus(function() {
	         $(this).css('border','1px solid #A89411');
	    });
	    $(".select").blur(function() {
	         $(this).css('border','1px solid #C8C8C8');
	    });
		$('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 top");
		  }, 
		  function () {
			$(this).css("backgroundPosition", "left top");
		  }
		);
	});
});

