jQuery(document).ready(function() {
	// if cookie doesn't exist create it -->
	if( jQuery.cookie("rgh_showanimation") == null ) {
		jQuery.cookie("rgh_showanimation", "1", { expires: 30});
	}
	
	jQuery("#showhidelink").click(function(){
		if( jQuery.cookie("rgh_showanimation") == "1" ) {
			jQuery.cookie("rgh_showanimation", "0", { expires: 30});
			jQuery("#showhidelink").text("Show banner");
			location.reload();
		}
		else {
			jQuery.cookie("rgh_showanimation", "1", { expires: 30});
			jQuery("#showhidelink").text("Hide banner (for slow browsers)");
			location.reload();
		}
	});

	// check for value on page load -->
	if( jQuery.cookie("rgh_showanimation") == "0") {
		jQuery("#nextlogo").html("");//animate({ height: 'show', opacity: 'hide' }, 'slow');
		jQuery("#showhidelink").text("Show banner");
	}

});
