jQuery(document).ready(function(){
	
	//view gallery...
	jQuery("#stripe").hover(function(){
	if ( !jQuery("#prompt_view_gallery").is(":animated") ) {
	    jQuery("#prompt_view_gallery").fadeIn('slow');
	}
	}, function(){
    	jQuery("#prompt_view_gallery").fadeOut('fast');
	});
	
	//join mailing list...
	jQuery("#mailing-list").hover(function(){
	if ( !jQuery("#prompt_join_mailing_list").is(":animated") ) {
		jQuery("#prompt_join_mailing_list").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_join_mailing_list").fadeOut('fast');
	});
	
	//facebook like...
	jQuery("#facebook-like").hover(function(){
	if ( !jQuery("#prompt_like_facebook").is(":animated") ) {
		jQuery("#prompt_like_facebook").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_like_facebook").fadeOut('fast');
	});
	
	//twitter follow like...
	jQuery("#sidebar-left #twitter").hover(function(){
	if ( !jQuery("#prompt_follow_twitter").is(":animated") ) {
		jQuery("#prompt_follow_twitter").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_follow_twitter").fadeOut('fast');
	});
	
	//click to filter...
	jQuery("#filter_prompt").hover(function(){
	if ( !jQuery("#prompt_click_to_filter").is(":animated") ) {
		jQuery("#prompt_click_to_filter").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_click_to_filter").fadeOut('fast');
	});
	
	//rsvp facebook...
	jQuery("#gig-listing .gig_facebook_event a").hover(function(){
	if ( !jQuery("#prompt_rsvp_facebook").is(":animated") ) {
		jQuery("#prompt_rsvp_facebook").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_rsvp_facebook").fadeOut('fast');
	});
	
	//rsvp facebook...
	jQuery("#gig-listing .gig_ticket_link a").hover(function(){
	if ( !jQuery("#prompt_buy_tickets").is(":animated") ) {
		jQuery("#prompt_buy_tickets").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_buy_tickets").fadeOut('fast');
	});
	
	//visit facebook...
	jQuery("#view-fb").hover(function(){
	if ( !jQuery("#prompt_view_facebook").is(":animated") ) {
		jQuery("#prompt_view_facebook").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_view_facebook").fadeOut('fast');
	});
	
	//find twitter...
	jQuery("#find-twitter").hover(function(){
	if ( !jQuery("#prompt_find_twitter").is(":animated") ) {
		jQuery("#prompt_find_twitter").fadeIn('slow');
	}
	}, function(){
		jQuery("#prompt_find_twitter").fadeOut('fast');
	});


});
