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