// JavaScript Document
$(document).ready(function(){
	$('#pageright p.bodytext').each(function(){
		$(this).height(18);
		$(this).css("padding-top","3px");
		$(this).css("border-bottom","1px solid #FFFFFF");										 
	});
	$('#pageright a.internal-link').each(function(){
		$(this).css("margin","0px");
		$(this).css("padding","0px");
		$(this).css("border","0px");
		$(this).css("text-decoration","none");
		$(this).css("padding-left","12px");
	});

	$('#pageright a.internal-link span').each(function(){
		url = $(this).parent().attr('href');
		loc = window.location + '';
		if(loc.indexOf(url)>-1){
			$(this).css("color","#1E4E9B");
		}
	});

	$('#pageright a.internal-link span').mouseover(function(){
		$(this).css("color","#1E4E9B");
	});
	
	$('#pageright a.internal-link span').mouseout(function(){
		url = $(this).parent().attr('href');
		loc = window.location + '';
		if(loc.indexOf(url)>-1){
			$(this).css("color","#1E4E9B");
		}
		else{
			$(this).css("color","#32ABBE");
		}
	});
	
});
