jQuery(document).ready(function($) {
	var flashVars = {
		button: '1'
	};

	$('#scroller_container').click(function(){
		window.location.href = 'events'
		});

	swfobject.embedSWF("/wordpress/wp-content/themes/epa/flash/menu.swf", "headerDiv", "766", "158", "7.0.0", "" , flashVars, {
		wmode: "transparent"
	});
	
	swfobject.embedSWF("/wordpress/wp-content/themes/epa/flash/slideShow.swf", "slideShowDiv", "438", "291", "7.0.0", "" , "", {
		wmode: 'transparent'
	});
	
	swfobject.embedSWF("/wordpress/wp-content/themes/epa/flash/musicPlayer.swf", "musicPlayer", "110", "38", "8.0.0", "" , "", {
		wmode: "transparent",
		base: 'flash'
	});

	$('#generalInfoDialog').dialog({
		modal: true,
		title: 'General Information',
		width: '700px',
		autoOpen: false,
		position: 'top',
		zIndex: 9999,
		show: 'drop',
		hide: 'drop',
		resizable: false
	});

	$('.aboutEcoPlanetButton').click(function(){
		$('#generalInfoDialog').load('/aboutecoplanet', function() {
			$('#generalInfoDialog').dialog('option', 'title', 'About Eco-Planet Adventures');
			$('#generalInfoDialog').dialog('open');
		});
	});

	$('.adventureLevelButton').click(function(){
		$('#generalInfoDialog').load('/adventurelevels', function() {
			$('#generalInfoDialog').dialog('option', 'title', 'Adventure Level Highlight Summary');
			$('#generalInfoDialog').dialog('open');
		});
	})

	$('.tripDateButton').click(function(){
		$('#generalInfoDialog').load('/tripdates', function() {
			$('#generalInfoDialog').dialog('option', 'title', 'Upcoming Trip Dates');
			$('#generalInfoDialog').dialog('open');
		});
	});
});