function logohomeover(id){
	document.getElementById(id).src='/site/images/'+id+'-sm.gif';
	document.getElementById(id).style.borderLeft="1px solid #ffffff";
}
function logohomeout(id){
	document.getElementById(id).src='/site/images/1x1.gif';
	document.getElementById(id).style.borderLeft="1px none";
}

$(document).ready(function(){
	$('div.contentStyle').each(function(){	
		$('a[href]').each(function() {		   		
			if($(this).attr('href').contains('/#')){			
				$(this).attr('href',document.location.href+$(this).attr('href').replace('/#','#'));
			}
			
		})
	})	
});