jQuery(document).ready(
	function(){
		jQuery('.logo').css('cursor', 'pointer').click(
			function(){
				location.href = 'index.html';
			}
		);
		jQuery('.menu li img').each(function(){
			var t = jQuery(this);
			var s = t.attr('src');	
			var s2 = s.replace(/\-off/gim, '');
			t.mouseover(function(){
				t.attr('src',s2);
			});
			t.mouseout(function(){
				t.attr('src',s);
			});
		});

	}
);

