// JavaScript Document
$(document).ready(function(){
	//first main nav item: no border
	$('#mainNav > li:first').addClass('noBorder');
	
	//TWEET BAR
	$('#contentWrap').append('<a class="tweetsTag" href="#">Hide Tweet</a>');
	//check cookie
	if($.cookie('hideTweetBar')){
	//if there is a hide cookie
		$('#tweets').fadeOut('slow');
		$('.tweetsTag').toggle(function(){
						$('#tweets').slideDown('slow');	
						$(this).text('Hide Tweet');
						$.cookie('hideTweetBar',null);
						//alert($.cookie('hideTweetBar'));
					},function(){
						$('#tweets').slideUp('slow');
						$(this).text('Show Tweet');
						$.cookie('hideTweetBar','hide');
					}).text('Show Tweet');
	}else{
	//if there is no cookie, or it says show	
					$('.tweetsTag').toggle(function(){
						$('#tweets').slideUp('slow');
						$(this).text('Show Tweet');
						$.cookie('hideTweetBar','hide');
					},function(){
						$('#tweets').slideDown('slow');
						$(this).text('Hide Tweet');
						$.cookie('hideTweetBar',null);
					});	
	}

	$('#tweets a').click(function(){this.target = "_blank";});
	
});