$(document).ready(function(){
	  $("#nav_14623 li").hover(
		  function(){ $("ul", this).fadeIn("fast"); }, 
		  function() { } 
	  );
  if (document.all) {
		  $("#nav_14623 li").hoverClass ("sfHover");
	  }
});

  $.fn.hoverClass = function(c) {
	  return this.each(function(){
		  $(this).hover( 
			  function() { $(this).addClass(c);  },
			  function() { $(this).removeClass(c); }
		  );
	  });
  };	  


$(function(){
	$('#slides').slides({
    	preload: true,
        preloadImage: '/js/img/loading.gif',
		effect: 'fade',
		crossfade: true,
        play: 3000,
        pause: 500,
        hoverPause: true
    });
});
