$(function() {
		   
	$('#menu ul li:first-child').addClass('first');
	
	$('#menu ul li:last-child').addClass('last');
		   
	});

$(function() {
		   
	$('#menu ul > li > ul')
		.hide()
	$('#menu ul li').hoverIntent(function(){
		$(this).find('ul').slideDown();
	} ,function() {
		$(this).find('ul').fadeOut();
		});
});

$(function() {

  $('#banner div').cycle({ 
	  fx: 'fade', 
      speed:  2500 
  });

});
