(function($) {
	
	
	$(".name").click(
	function() { $("#kylesev_info").slideToggle("fast");
	});
	
	$(".graphic").click(
	function() { $("#graphic_info").slideToggle("fast");
	});
	
	$(".website").click(
	function() { $("#website_info").slideToggle("fast");
	});
	
	$(".more").click(
	function() { $("#muchmore_info").slideToggle("fast");
	});
	
	$(".name").hover(
    function() { $(".kyle_hover").stop(true, true).fadeIn('fast');
                },
            function() {
                $(".kyle_hover").stop(true, true).fadeOut('fast');
            });
			
			$(".graphic").hover(
    function() { $(".graphic_hover").stop(true, true).fadeIn('fast');
                },
            function() {
                $(".graphic_hover").stop(true, true).fadeOut('fast');
            });
			
			$(".website").hover(
    function() { $(".website_hover").stop(true, true).fadeIn('fast');
                },
            function() {
                $(".website_hover").stop(true, true).fadeOut('fast');
            });
			
			$(".more").hover(
    function() { $(".muchmore_hover").stop(true, true).fadeIn('fast');
                },
            function() {
                $(".muchmore_hover").stop(true, true).fadeOut('fast');
            });
})(jQuery);
