$(function(){
	//PROFILE IMAGE HOVER EFFECT
	//Need to make this to be used by anything
	$("a#myprofile").hover(
		function(){
			$(this).animate({
				opacity:"0.5"
			},"slow");
		},
		function(){
			$(this).animate({
				opacity:"1"
			},"slow");
		}
	);
});