$(function () {
	$("#contactForm").submit(function () {
			$(".submit").hide();
			$.get("contactengine.php", {
					name : $("#name").val(),
					email : $("#email").val(),
					comment : $("#message").val()
				});
			$("#form").append("<p style='float:right; font-family: Arial; font-weight: bold;'>Message Sent!</p>");
			return false;
		});
	$("#nojs").hide();
	$("#wrapper").show();
	$("#slide").css({
			visibility : "visible"
		});
	$("#slider").easySlider({
			speed : 500,
			pause : 3000,
			auto : true,
			continuous : true,
			numeric : true,
			controlsFade : false
		});
	$("#menu span").hover(function () {
			$(this).stop(true, true).animate({
					opacity : "1.0"
				}, "normal");
		}, function () {
			$(this).stop(true, true).animate({
					opacity : "0"
				}, "normal");
		});
	$(".imagebox img").hover(function () {
			$(this).stop(true, true).animate({
					opacity : "0.7"
				}, "fast");
		}, function () {
			$(this).stop(true, true).animate({
					opacity : "1.0"
				}, "normal");
		});
	$("a.imagebox").fancybox();
});

