


jQuery.noConflict();


jQuery(function() {
		
		jQuery('#menu li').mouseover(function(){
			jQuery(this).find('ul').show();
		}).mouseout(function(){
			jQuery(this).find('ul').hide();
		});
		
		
		jQuery('#menu li').mouseover(function(){
			jQuery(this).children('ul').find('ul').hide();
		});

		/*
		jQuery.get('/events/upcoming_events.html',function(data){
			
			var wobody = jQuery('#standard',data);
			var title = jQuery('h2:first',wobody).text();
			var img = jQuery('img:first',wobody).attr('src');
			var dat = jQuery('p:eq(0)',wobody).text();
			
			data = null;
			wobody = null;
			
			var bod = '';
			bod += '<img src="/images/sidebar_whats_on_heading.png" alt="What\'s on" class="heading" border="0">';
			bod += '<a href="/events/upcoming_events.html"><img src="/images/thumbnail/?img='+img+'" alt="Image" border="0" class="pic"></a>';
			bod += '<h2>'+title+'</h2>';
			bod += '<p>'+dat+'</p>';
			bod += '<p class="link"><a href="/events/upcoming_events.html">Find out more</a></p>';
		
			jQuery('#whatson').hide().html(bod).show();
		});
		*/
		
});