$(document).ready(function() {
	$('.open-cv').click(function() {
		$('#drop').slideDown('fast', function() {
			$('.open-cv').hide();
		});
	});
});
