// JavaScript Document
$().ready(function(){
				   
				   
				   
		$('#title').hide();
		$('#title').fadeIn('slow');
		
			$('.bowl').animate({top:'10px', left:'950px'},500,function(){
				   
				$('.bowl').animate({left:'500px'},1500,function(){
					$('.jack').animate({left:'350px'},1800);
				});	
			});

							   
	
				   

	$('#menu li').hover(function(){
				$(this).addClass('hoverItem');
				$('a',this).addClass('hoverItem');
			},function(){
				$(this).removeClass('hoverItem');
				$('a',this).removeClass('hoverItem');
			});	
	
	$('#menu li').bind('click',function(event){ window.location = $('a',this).attr('href')});		
	
		
		
	$('.picturePicture').click(function(){			//	picture Gallery functions
			var pic=$(this).attr('alt');

			$('#box23').stop().fadeOut('slow',function(){
			$('#box23 img').attr('src',pic);
												});
			$('#box23').fadeIn('slow',function(){$(this).css({opacity:'1'})});

	});		
	$('#box23').click(function(){
		$('#box23').fadeOut();
	});
	

		var arr = $('.wkrte-1').rte({
			width: 780,
			height: 740,
			controls_rte: rte_toolbar,
			controls_html: html_toolbar
		});	

});


