jQuery.noConflict();

jQuery(document).ready(
	function($)
	{
		$("#visit").hover(
			function() {
				$("#sites").show();
			},
			function() {
				return true;
			}	
		);
		
		$("#visit").click(
			function() {
				$("#sites").hide();
			}	
		);
		
		$("#sites").hover(
			function() {
				return true;
			},
			function() {
				$("#sites").hide();
			}	
		);
		
		$("#visitBottom").hover(
			function() {
				$("#sitesBottom").show();
			},
			function() {
				return true;
			}	
		);
		
		$("#visitBottom").click(
			function() {
				$("#sitesBottom").hide();
			}	
		);
		
		/*$("#sitesBottom").hover(
			function() {
				return true;
			},
			function() {
				$("#sitesBottom").hide();
			}	
		);*/
	}
);
