	$(document).ready(
	function()
	{	
$('.makeHover').hover(function(){
    $(this).css('opacity', 0.8);
},function(){
    $(this).css('opacity', 1);
});
	});
	
	
    
$(document).ready(
	function()
	{ $(".activeBlueElement").css('opacity', 0.8);
});
	


