	//<![CDATA[
	$(document).ready(function(){
		var currSize = 10;
		if($.cookie('fontSizer') != null) {
			currSize = $.cookie('fontSizer');
			if (currSize == 12)
				$('body').css('font-size','75%');
			else if (currSize == 14)
				$('body').css('font-size','87.5%');
		}
		$('#textSizePlus').click(function(event){
			event.preventDefault();
			if (currSize == 10) {
				currSize = 12;
				$('body').css('font-size','75%'); //=12px baseline;
				/*if ($.browser.msie && parseInt(jQuery.browser.version)==6)
					$('#col1').css('height','54.8em');*/
				$('#bottomTop').css('height','8px');
			}
			else if (currSize == 12) {
				currSize = 14;
				$('body').css('font-size','87.5%'); //=14px baseline;
				$('#bottomTop').css('height','11px');
				/*if ($.browser.msie && parseInt(jQuery.browser.version)==6)
					$('#col1').css('height','54.6em');*/
			}
			$.cookie('fontSizer', currSize, { expires: 999 });
		})
		$('#textSizeMinus').click(function(event){
			event.preventDefault();
			if (currSize == 14) {
				currSize = 12;
				$('body').css('font-size','75%'); //=12px baseline;
				$('#bottomTop').css('height','8px');
				/*if ($.browser.msie && parseInt(jQuery.browser.version)==6)
					$('#col1').css('height','54.8em');*/
			}
			else if (currSize == 12) {
				currSize = 10;
				$('body').css('font-size','62.5%'); //=14px baseline;
				$('#bottomTop').css('height','13px');
				/*if ($.browser.msie && parseInt(jQuery.browser.version)==6)
					$('#col1').css('height','54.2em');*/
			}
			$.cookie('fontSizer', currSize, { expires: 999 });
		})
		
		// This is going in document.ready here, handles the login dropdown swap
		
		$('#accountType').hide();
		$('#accountTypeStyle').show();
		$('#accountTypeClick').click(function(event){
			event.preventDefault();
			if($('#accountTypeStyleOptions').hasClass('visible')) {
				$('#accountTypeStyleOptions').hide();
				$(this).css('background-position','0 21px');
				
			}
			else {
				$('#accountTypeStyleOptions').show();
				$(this).css('background-position','0 0');
			}
			$('#accountTypeStyleOptions').toggleClass('visible');
		})
		
		$('#accountTypeStyleOptions li a').click(function(event){
			event.preventDefault();
			$(this).parent().parent().hide();
			$(this).parent().parent().toggleClass('visible');
			$('#accountTypeClick').text($(this).text());
			$('#accountType').val(''+$(this).text()+'');
		})
		
		var accountOptionsBg = new Image();
		accountOptionsBg.src = 'images/accountMenuBg_Home.gif';
	});
	//]]>
