$(document).ready(function(){	
				//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/				
				var estado = false;
				//Remove outline from links
				$("a").click(function(){
					$(this).blur();
				});
				//When mouse rolls over
				$("b").mouseover(function(){ 
					$(this).stop().animate({width:'85px'},{queue:false, duration:100, easing: 'linear'})
				});
				$("b").mouseout(function(){ 
					$(this).stop().animate({width:'129px'},{queue:false, duration:100, easing: 'linear'})
				});
				//When mouse is removed
			
		
$("#slide-c").mouseover(function(){
$(".ws-title").stop().animate({height:'70px'},{queue:false, duration:300, easing: 'linear'})
});
$("#slide-c").mouseout(function(){
$(".ws-title").stop().animate({height:'0px'},{queue:false, duration:600, easing: 'linear'})
});	
});
