// JavaScript Document
var fadebox = "<div class='FadeFrame' id='FadeFrame'>Loading...<br />Please Wait...<br /><img src='/images/loading1.gif' height='32' width='32' alt='Loading' border='0' /></div>";
var fadesendbox = "<div class='FadeFrame' id='FadeFrame'>Sending...<br />Please Wait...<br /><img src='/images/loading1.gif' height='32' width='32' alt='Loading' border='0' /></div>";
var loadingtext = "<center>Loading...<br />Please Wait...<br /><img src='/images/loading1.gif' height='32' width='32' alt='Loading' border='0' /></center>";
jQuery(document).ready(function(){

	function submit_contact_form(){
		jQuery(fadesendbox).appendTo("#ContactForm");
		jQuery("#ContactForm").fadeTo(1000, 1, function() {		
			jQuery.post("/include/postcontact.php",
						 jQuery("#frmContactUs").serialize(),
						 function(data) {
								jQuery("#ContactForm").fadeTo(100, 1);
								jQuery("#ContactForm").html(data);
								jQuery("#FadeFrame").remove();
								jQuery(".btnSubmitContact").click(submit_contact_form);
						 }
			);
		});
	};
	
	jQuery(".btnSubmitContact").click(submit_contact_form);

	//--------------------------------------------------
	function show_event() {
		var eventid = jQuery(this).attr("eventid");
		jQuery("#EventBox").fadeOut("fast", function() {
			jQuery("#EventBox").html(loadingtext);
			jQuery("#EventBox").fadeIn("fast");
			
			jQuery.ajax({
				type: "GET",
				url: "/include/showevent.php",
				data: "id="+eventid+"&show=1",
				success: function(data){
					jQuery("#EventBox").html(data);
					jQuery(".lnkCloseEvent").click(close_event);
					//jQuery("#EventBox").fadeIn("medium");
				},
				error: function(data, status, error) {
					//jQuery("#EventBox").fadeIn("medium");
					jQuery(".lnkCloseEvent").click(close_event);
				}
			});		
		});
		
	};
	
	function close_event() {
		jQuery("#EventBox").fadeOut("fast");
	};
	jQuery(".lnkShowEvent").click(show_event);
		
});

