// Horoscopes js

 $(document).ready(function(){
							
	$('#tom-msg').hide();
	$('#ed-tom-date').hide();
	$("#ed-msg1 a").css("font-weight","bold");
	 
	 $("#ed-msg2 a").click(function(){
			$(this).css("font-weight","bold");
			$("#ed-msg1 a").css("font-weight","normal");	
			$('#todays-msg').hide();
			$('#ed-today-date').hide();
			$('#tom-msg').show();
			$('#ed-tom-date').show();
			return false;								 
	 });
	  $("#ed-msg1 a").click(function(){
			$(this).css("font-weight","bold");	
			$("#ed-msg2 a").css("font-weight","normal");
			$('#tom-msg').hide();
			$('#ed-tom-date').hide();
			$('#todays-msg').show();
			$('#ed-today-date').show();
			return false;								 
	 });
 
 });
 
 
