// JavaScript Document

$(document).ready(function(){
	$('#metaCopyright p.hoverTips').hide(); 
	$('#metaCopyright').hover(function() {
	  	$(this).children('p.hoverTips').show();
		$(this).toggleClass('hover');
	}, function() {
	  	$(this).children('p.hoverTips').hide();
		$(this).toggleClass('hover');
	});	
});


