$(document).ready(function(){
	//hover fix for ie6
	$('ul.subnav').hide();
	$('#pnav li').hover( 
		function(){ $('ul.subnav',this).show();},
		function(){ $('ul.subnav',this).hide();}
	);
	//overwrite asp switch conditional for right column of main content
		//add click function to buttons , upon click remove inactive state
		//add inactive state to appropriate elements
		//show proper content associated with link
		//return false to negate default action - sending variable to url
	$('#cloginLink').click(function(){
		$('#loginlinks li').removeClass('inactive');
		$('#businessLogin').hide();
		$('#clientLogin').show();
		$('#bloginLink').addClass('inactive');
		return false;
	});
	
	$('#bloginLink').click(function(){
		$('#loginlinks li').removeClass('inactive');
		$('#businessLogin').show();
		$('#clientLogin').hide();
		$('#cloginLink').addClass('inactive');
		return false;
	});
});	
