  $(document).ready(function() {
	
        $(function() {
            $("#one").lavaLamp({
                fx: "backout",
                speed: 700,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });
   
	$(function() {
			$('#sidebar li').hover(function(){
				$(this).animate({left:'20px'},{queue:false,duration:200});
			}, function(){
				$(this).animate({left:'0px'},{queue:false,duration:200});
			});
		});
	
	$(function() {
			$('span.more a').hover(function(){
				$(this).animate({color:'nicegreen'},{queue:false,duration:200});
			}, function(){
				$(this).animate({color:'black'},{queue:false,duration:200});
			});
		});
	 
	$(function() {
			$('.services li').hover(function(){
				$(this).animate({left:'5px'},{queue:false,duration:200});
			}, function(){
				$(this).animate({left:'0px'},{queue:false,duration:200});
			});
		});
	 
	$(function() {
			$('span.readmore a').hover(function(){
				$(this).animate({color:'nicegreen'},{queue:false,duration:200});
			}, function(){
				$(this).animate({color:'black'},{queue:false,duration:200});
			});
		});
	 
	$(function() {
			$('.services li a').hover(function(){
				$(this).animate({color:'nicegreen'},{queue:false,duration:200});
			}, function(){
				$(this).animate({color:'black'},{queue:false,duration:200});
			});
		});
	 
	$(function() {
			$('.nav li a').hover(function(){
				$(this).animate({color:'lightgreen'},{queue:false,duration:500});
			}, function(){
				$(this).animate({color:'white'},{queue:false,duration:500});
			});
		});
	
});