/* create a timeOut function in jQuery */
jQuery.fn.idle = function(time){
	return this.each(function(){
		var i = $(this);
		i.queue(function(){
			setTimeout(function(){
			i.dequeue();
			}, time);
		});
	});
};
$(document).ready(function(){
	$('#copyrightLink').hover(
			function() { $('#copyright').fadeIn('fast'); },
			function() { $('#copyright').fadeOut('fast'); });					   
						   
	
});

function goSomewhere(url){
	location.href=url;
}