// JavaScript Document

	$(function(){
		
		/* Slide in the technology bar, if there is no cookie */
			//$("#information").hide();
			$('#information').click(function() {
				window.location = $('a', this).attr('href');
			});
			
			
			if($.cookie("mc_hide_tech_perm") == null){
				$(this).oneTime(1500, "slide", function() {
					$("#information").slideDown("slow");
				});
			}
			
			
		/* Hide the technology bar for just this page */
			$("#hide_tech").click(function(){
				$('#information').slideUp('slow');
				return false;
			});
		
		/* Hide the technology bar permantly */
			$("#hide_perm").click(function() {
				var date = new Date();
				date.setTime(date.getTime() + (3 * 24 * 60 * 60 * 1000));
				$.cookie('mc_hide_tech_perm', 'TRUE', { path: '/', expires: date });
				
				$('#information').slideUp('slow');
				return false;
			});
	
	
	});
