$(document).ready(function(){

	$('#nav a, .email').hover(
		function() {
			$(this).stop().animate({
			color:'#00aeef'
			}, 300);
		},
		function() {
			$(this).stop().animate({
			color:'#3c3d45'
			}, 300);
		}
	);

	$('.work a').hover(
		function() {
			$(this).stop().animate({
			opacity:1,
			color:'#000000'
			}, 300);
		},
		function() {
			$(this).stop().animate({
			opacity:0.6,
			color:'#444444'
			}, 300);	
		}
	);
	
	$("#logo").mouseover(function() {
		$(this).sprite({fps:25, no_of_frames:10, play_frames: 10});
		});
	
	
});


