jQuery(document).ready(function(){
								
	$("#buckets ul li a").css("opacity","1.0"); 
	
	$("#buckets ul li a").hover(function() {		
		$(this).stop(true, true).css("opacity","0.9"); },		
	function() {		
		$(this).stop(true, true).css("opacity","1.0");
	});
	
	$("#form .steps").css("background","-webkit-gradient(linear,left bottom,left top,color-stop(0.31, rgb(250,250,250)),color-stop(0.58, rgb(240,240,240)),color-stop(0.83, rgb(250,250,250))");
	
	$("#form .steps").css("background","-moz-linear-gradient(center bottom,rgb(250,250,250) 31%,rgb(240,240,240) 58%,rgb(250,250,250) 83%)");
	
	$("#form .steps").css("border-radius","10px"); 
	$("#form .steps").css("-webkit-border-radius","10px"); 
	$("#form .steps").css("-moz-border-radius","10px 10px 10px 10px"); 

	
							
});
