// JavaScript Document

$(document).ready(
		function(){
			$('#banner').innerfade({
				speed: 'slow',
				timeout: 3000,
				type: 'sequence',
				containerheight: '200px'
			});
			$('.children').parent().css('position','relative');
			$('.children')
				.css('position','absolute')
				.css('top','-50%').css('left','210px')
				.css('border','outset 1px')
				.css('background','#FFF')
				.css('white-space','nowrap')
				.css('z-index','100')
				.hide()
				.find('li:first-child').css('border-top','none');
			$('#menu .page_item').hover(
				function(){
					$(this).find('.children').fadeIn(500);
				},
				function(){
					$(this).find('.children:animated').stop();
					$(this).find('.children').hide();
					$(this).find('.children').css('opacity','1');
				}
			)
		}
	);

