$(function() {
	$("a[rel^='prettyPhoto']").prettyPhoto();

	$('#pics').innerfade({
		speed: 700,
		timeout: 4000,
		type: 'random',
		containerheight: '275px'
	});

	$('#pics').show("slow");

  $("#nav li").hover(function() {
    $(this).children("ul").stop(true, true).css("z-index", 9999).delay(100).slideDown(300);
  }, function() {
    $(this).children("ul").stop(true, true).css("z-index", 1000).delay(400).slideUp(200);
  });
  
});(jQuery);

