jQuery(document).ready(function($){

	$('#menubar-wrapper .menu ul').append('<li><a href="mailto:arroway78@gmail.com">Contact</a></li>').addClass('clear');
	Cufon.refresh();

})

function resizeHeight(){
	var windowHeight = $(window).height();
	var sidebarHeight = $('.sidebarContainer').height();
	var contentHeight = $('.contentContainer').height();

	if(windowHeight > contentHeight || windowHeight > sidebarHeight){
		$('.contentContainer, .sidebarContainer').css('height', windowHeight + 'px');
	} else{
		if(sidebarHeight > contentHeight){
			$('.contentContainer').css('height', sidebarHeight + 'px');
		} else{
			$('.sidebarContainer').css('height', contentHeight + 'px');
		}
	}
}

