// hover function

$(document).ready(function(){
	$("#content_home a").hover(function(){
		$(this).fadeTo("medium", 0.6); // This should set the opacity to 60% on hover
	},function(){
   		$(this).fadeTo("medium", 1.0); // This should set the opacity back to 100% on mouseout
	});
});

$(document).ready(function(){
	$("#left_home a, #left a").hover(function(){
		$(this).fadeTo("medium", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("medium", 1.0); // This should set the opacity back to 100% on mouseout
	});
});


