// the funky stuff that makes the page cool!
$(document).ready(function(){
	//presets
	$(".simplefade").css({"opacity": "0.8"});
	$(".simplefade2").css({"opacity": "0.6"});
	$(".toplinks").css({"opacity": "0.8"});

	//end presets
	
	$(".simplefade").mouseenter(function(){
		$(this).stop().animate({"opacity": "1", "duration": (500)});
	});
	$(".simplefade").mouseleave(function(){
		$(this).stop().animate({"opacity": "0.8", "duration": (1500)});
	});
	
	$(".simplefade2").mouseenter(function(){
		$(this).stop().animate({"opacity": "1", "duration": (500)});
	});
	$(".simplefade2").mouseleave(function(){
		$(this).stop().animate({"opacity": "0.6", "duration": (1500)});
	});
	
	$(".toplinks").mouseenter(function(){
		$(this).stop().animate({"opacity": "1", "margin-top": "4px"}, {"duration": (200)});
	});
	$(".toplinks").mouseleave(function(){
		$(this).stop().animate({"opacity": "0.8", "margin-top": "10px"}, {"duration": (500)});
	});
	
});
