/* Copyright 2010 - FertilityFriend.com */
var current_menu=null;
	
jQuery(document).ready(function(){
			   /*
			     the tab who's url matches the url of the current page is the CURRENT tab
			   */
			   $('.menu_cell').each(function(){
						    if(document.location.href.indexOf($('a',$(this)).attr('href')) != -1 ){
							current_menu = $(this)[0];
							$(this).addClass('selected_menu');
						    }
						});

			   /* mouse hover effect on the tabs 
			      hover takes two generic funcions as arguments
			      the first is execute when the mouse enters the oject
			      the second is executed when the mouse leaves the object
			   */
			   $('.menu_cell').hover(
						 function(){
						     /* if we are not over the CURRENT tab then un-highlight the CURRENT tab and highlight this tab */
						     if($(this)[0] !== current_menu){
							 $(current_menu).removeClass('selected_menu');
							 $(this).addClass('selected_menu');
						     }
						 },
						 function(){
						     /* if we are not LEAVING the CURRENT tab then highlight the CURRENT tab and un-highlight this tab */
						     if($(this)[0] !== current_menu){
							 $(current_menu).addClass('selected_menu');
							 $(this).removeClass('selected_menu');
						     }
						 }
						 ); /* $('.menu').hover() */

			   if ($.cookie('MS_FFU')!=null) {
			       if ((($.cookie('ffpid_l')!=null)&&($.cookie('ffpid_l')>0))|| (($.cookie('ffpid_auto')!=null)&&($.cookie('ffpid_auto')!=''))){
				   $('#sign_in_lnk').html('Logout');
				   $('#sign_in_lnk').attr('href','/ttc/login.php?action=logout');
				   $('#sign_in_lnk').attr('title','');
				   $('#sign_in_lnk').show();
				   $('#sign_in_div').hide();
			       } else {
			       $('#sign_in_lnk').html('Sign Up');
			       $('#sign_in_lnk').attr('href','/ffo/signup.php');
			       $('#sign_in_lnk').attr('title','Sign up for your free membership.');
				   $('#sign_in_lnk').show();
				   $('#sign_in_div').show();
			       }
			   } else {
			       $('#sign_in_div').show();
			       $('#sign_in_lnk').html('Sign Up');
			       $('#sign_in_lnk').attr('href','/ffo/signup.php');
			       $('#sign_in_lnk').attr('title','Sign up for your free membership.');

			   }


			   

			   $('.defaultText').focus(function() {
						       if ($(this).val()==$(this)[0].title) {
							   $(this).removeClass('defaultTextActive');
							   $(this).val('');
						       }
						   });
			   $('.defaultText').blur(function() {
						      if ($(this).val()=='') {
							  $(this).addClass('defaultTextActive');
							  $(this).val($(this)[0].title);
						      }
						  });
			   $('.defaultText').blur();

			
		       }); /* end document.ready() */

