// JavaScript Document

$(document).ready( function() {
	
	$('#proceed').css({opacity:.2}).hover(
		function() {
			$(this).stop(1,1).css({opacity:1})
		},
		function() {
			$(this).animate({opacity:.2})
		});

})