jQuery.noConflict();
(function($){
	jQuery(document).ready(
	function(){
		$("#navigation li").hover(
			function(){
				$(this).addClass('hover');
			},function(){
				$(this).removeClass('hover');
			}
		);
	});
})(jQuery);
