	$(document).ready(
	function()
	{	
$('.makeHover').hover(function(){
    $(this).css('opacity', 0.8);
},function(){
    $(this).css('opacity', 1);
});
	});
	
$(document).ready(
	function()
	{	
		$("#link").click(
		function()
		{
			$("#more").toggle("normal");
		})
	});

