$(document).ready(function(){
	
	$('.fadeMe').innerfade({
		speed: 2000,
		timeout: 5000,
		type: 'random'		
	});	

	$('p#fadeMe').innerfade({
		speed: 2000,
		timeout: 5000,
		type: 'random'
	});
	
	$('#fadeLeft').innerfade({
		speed: 2000,
		timeout: 5000,
		type: 'random'
	});
	
	
	$('#menu ul li').hover(function() {
		$(this).addClass('active');
		$(this).css('zIndex', '1000');
	}, function() {
		$(this).removeClass('active');
	});
	
	$('#parkMap a').hover(function() {
		eleId = $(this).attr('rel');
		$('#parkMap .mapCopy').hide();
		$('#' + eleId + 'Copy').stop(true,true).fadeIn();		
	}, function() {
		eleId = $(this).attr('rel');
		$('#' + eleId + 'Copy').stop(true,true).fadeOut(400, function(){$('#defaultCopy').stop(true,true).fadeIn();	});	
			
	});
	
});
