$(document).ready(function(){
	$("input:radio,input:submit,input:text,input:password").uniform();
	$("div.button").hover(function () {
	  $(this).stop(false,true).fadeTo("slow", 0.8);
	  },function() {
	  $(this).stop(false,true).fadeTo("slow", 1.0);
	});
	$("a img").hover(function () {
	  $(this).stop(false,true).fadeTo("slow", 0.7);
	  },function() {
	  $(this).stop(false,true).fadeTo("slow", 1.0);
	});
});
