$(document).ready(function() {
	
	$('.headerRightIn a').click(function() {
		$('.headerRightIn li').removeClass('active');
		$(this).closest('li').addClass('active');
	});
	
	$('.expand').fadeTo(0, 0.95);
	
	$('div.slider').hover(function() {
		$(this).find('.expand').animate({
			'bottom' : '0px'
		}, 200);
	}, function() {
		$(this).find('.expand').animate({
			'bottom' : '-27px'
		}, 200);
	});

});
