$(document).ready(function(){
	//$('#drtv').addClass('open');
	function closeOpen(box){
		if(box.hasClass('open')){
			box.removeClass('open');
			box.addClass('closed');
			box.children('a').css('display', 'none');
			$('#cards').children('div').each(function(){
				$(this).children('a').css('display', 'none');
			});
		}else{
			box.removeClass('closed');
			box.addClass('open');
		}
	}
	$('.slider-box').mouseover(function(){
		if($(this).hasClass('closed')){
			$(this).animate({
				width: '500px'
			}, {duration : 100, queue: false, complete: function(){
					$('.open').children('a').fadeIn('fast');
			}});
			$('.open').animate({
				width: '120px'
			}, {duration : 100, queue: false});
			closeOpen($('.open'));
			closeOpen($(this));
		}

	});
});
