$(document).ready(function()
{	


	/* zebra stripe table rows */
	$("table tr:even").addClass("even");


	$(".sideBoxBase a, .wideButton, #linkedIn").css("opacity" , "1");
	
		$(".sideBoxBase a, .wideButton, #linkedIn").hover(
			function(){ $(this).css("opacity" , "0.7"); },
			function(){ $(this).css("opacity" , "1"); });


	$("#servicesList a").hover(
		function(){ $(this).children("img").css("opacity" , "0.7"); },
		function(){ $(this).children("img").css("opacity" , "1"); });
	
	
	/* grey out selected radio buttons on quiz */
	$(":radio").change(function()
	{
		//alert(this.name);
		$(this).parent().parent("div").addClass("answered");
	}); 
	
	
});
