$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("li.website").mouseover(function(){
		$(this).stop().animate({height:'200px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.website").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});

	//When mouse rolls over
	$("li.development").mouseover(function(){
		$(this).stop().animate({height:'140px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.development").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.seo").mouseover(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.seo").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.software").mouseover(function(){
		$(this).stop().animate({height:'270px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.software").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.multimedia").mouseover(function(){
		$(this).stop().animate({height:'172px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.multimedia").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$("li.hosting").mouseover(function(){
		$(this).stop().animate({height:'270px'},{queue:false, duration:2000, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.hosting").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});


  // This is only for inner left
  
  $("li.website-1").mouseout(function(){
		$(this).stop().animate({height:'27px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
  
  $("li.development-1").mouseout(function(){
		$(this).stop().animate({height:'140px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});

  $("li.seo-1").mouseout(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
  
  $("li.software-1").mouseout(function(){
		$(this).stop().animate({height:'160px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
  
  $("li.multimedia-1").mouseout(function(){
		$(this).stop().animate({height:'140px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});
  
  $("li.hosting-1").mouseout(function(){
		$(this).stop().animate({height:'100px'},{queue:false, duration:2200, easing: 'easeOutBounce'})
	});

});
