$(document).ready(function() {
	$('#submenuul li ul').hide();
	$('#submenuul .selected').siblings('ul').slideDown('normal');
	$('#submenuul li a').click(function(){
		var $this = $(this);
		var $checkElement = $this.next();
		$('#submenuul li a').removeClass('selected');
		$this.addClass('selected');
		
		if($checkElement.is('ul') && $checkElement.is(':visible'))
			return false;
		
		//$('#submenuul ul:visible').slideUp('normal');
		
		if($checkElement.is('ul') && !$checkElement.is(':visible')){
			$('#submenuul ul:visible').slideUp('normal');
			//$checkElement.slideDown('normal');
			return true;
		}
		
		return true;
	});
		
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	// this initialises the demo scollpanes on the page.
	$('#pane3').jScrollPane({
		scrollbarWidth:15, 
		scrollbarMargin:10
	});				   
									   
});
