// JavaScript Document


$(document).ready(function(){ // This sets the opacity of the image to 100% when the page loads
	$("a#fee_fade").fadeTo("fast", 1.0);
	$("a#question_fade").fadeTo("fast", 1.0);


	$("a#fee_fade").hover(function(){
	$("a#fee_fade").fadeTo("fast", 0.5); // This sets the opacity to 50% on hover
	},function(){
	$("a#fee_fade").fadeTo("fast", 1.0); // This sets the opacity back to 100% on mouseout
	});
	
	$("a#question_fade").hover(function(){
	$("a#question_fade").fadeTo("fast", 0.5); // This sets the opacity to 50% on hover
	},function(){
	$("a#question_fade").fadeTo("fast", 1.0); // This sets the opacity back to 100% on mouseout
	});

	


	
});




