// JavaScript Document

(function($){
	$(document).ready(function(){

		// set year in copyrights.
		$('#footer .copyright').html('Copyright &copy; '+ (new Date().getFullYear() || '2009') +' Ltd.  All Rights Reserved.');
		
		$('#header .globalnavi li img').hover(
			function(){
				$(this).stop();		
				$(this).fadeTo(200,0);		
			},
			function(){
				$(this).stop();		
				$(this).fadeTo(500,1);		
			}
		);


	});
})(jQuery);


