	jQuery(function() { 
			$("#work_nav a").hover(function() {
	  			$(this).stop().animate({
	  				color: "#fff"
	  			}, 100);
	  		},
	  		function() {
	  			if (!$(this).hasClass("here")) {
	  				$(this).animate({
	  					color: "#616161"
	  				}, 600);
	  			}
	  		});
	
	//slider stuff
	$("#slider").easySlider({
			prevId: 'prevBtn',
			prevText: '',
			nextId: 'nextBtn',	
			nextText: '',
			continuous: true
		});
	
	//index four
	$('.TopFour').hover(function(){
		$(".info", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".info", this).stop().animate({top:'183px'},{queue:false,duration:160});
	});   
	
	//sites byebye
	$('.sites').hover(function(){
		$(this).find('img').fadeOut();

	}, function(){
		$(this).find('img').fadeIn();
	});



	});
