// JQUERY
$(function(){
// Softbutton = soft fade on hover, used for contact icons
	$("#sidebar img.contact").stop().fadeTo("fast", .55);
	$("#sidebar img.contact").hover(
		function(){
			$(this).stop().fadeTo("fast", 1);
		},
		function(){
			$(this).stop().fadeTo("fast", .55);
		}
	);
});// end jquery
