jQuery(document).ready(function($) {
	
	$('#pull-down-feature').delay(1000).animate({'top': '-334px'},500);
	
	$('.feature-title h4 a').click(function(){
		featurePullDown = this.parentNode.parentNode.parentNode.parentNode;
		
		if(!$(this).hasClass('down')){
			$(featurePullDown).animate({'top': '0px'},500);
			$(this).addClass('down');
			$(this).html("hide");
			
		} else {
			$('#instructions').animate({'top': 0-$('#instructions').height()+'px'},500);
			$(featurePullDown).animate({'top': '-334px'},500);
			$(this).removeClass('down');
			$(this).html("Check out the new venue");
			
			
		}
		return false;
	})
	
});
