
		$(document).ready(function () {
		
		  $('#nav li:has(ul)').hover( 
		     function () {
		        $(this).find('ul').fadeIn('fast');
		     }, 
		     function () {
		        $(this).find('ul').hide();
		     }
		  );
		  
		  $('#nav li:has(ul) > a').click( function () {
		     return false;
		   });
		  

			$('#rotate').cycle({ 
	      fx:    'fade',
	      speed: 2000, 
		    timeout: 5000, 
		    delay: -2000 
      });
			
		
			$('#left-nav li:has(ul) a').click(function () {
				$('#left-nav li ul').slideUp();
				$(this).parent().find('ul').slideDown();
				return false;
			}).parent().find('ul').hide();
			
		});
		

function openWin( windowURL, windowName, windowFeatures ) { 
return window.open( windowURL, windowName, windowFeatures ) ; 
	} 
		
