$(document).ready(function(){

	$('.home #main .rol .bracket').mouseover(function() {
													  
		if($(this).hasClass('selected')){
			
		}else{
			$('.home #main .rol .bracket').children().children().animate({
				top: '203px',
			  }, {
				duration: 200, 
				specialEasing: {
				  
				}, 
				complete: function() {
		
				}
			  });	
		  }
													  
		$('.home #main .rol .bracket').removeClass('selected');
						
		$(this).addClass('selected');
		
	
		  $(this).children().children().animate({
			top: '100px',
		  }, {
			duration: 200, 
			specialEasing: {
			  
			}, 
			complete: function() {
	
			}
		  });

	 
	});

	
});
