$(document).ready(function(){

	$("#shell").find("a").hover(function (){
		$(this).animate({color:'#00B7EB'}, 300);
	}, function(){
		$(this).animate({color:'#005b7f'}, 400);
	});
	
	$("#menu").find(".r").hover(function (){
		$(this).animate({color:'#00B7EB'}, 300);
	},	function(){
		$(this).animate({color:'#888'}, 400);
	});
	
	$("menu").find(".h").hover(function (){	
		$(this).animate({color:'#888'}, 300);
	}, function() {
		$(this).animate({color:'#fff'}, 400);
	});
			
	$(".wrkEntry").hover(function (){
		$(this).animate({backgroundColor:'#fefefe'}, 100);
	}, function (){
		$(this).animate({backgroundColor:'#eee'}, 400);
	});
	
	$(".wrkEntry").find("img").hover(function() {

	}, function(){
	
	});


	$("#btmUp").toggle(function (){
		openBtm();
		
	}, function(){
		closeBtm();
		
	});

});
