$(document).ready(function(){
	$("a#clientlounge").fancybox({
		'speedIn'		:	500,
		'speedOut'		:	300,
		'overlayShow'	:	true
	});
})

function bookseminar(){
		
		$.ajax({
			type: "POST",
			url: "http://www.highperformancedevelopment.co.uk/index.php",
			data: $("form.seminars").serialize(),
			success: function()
			{
			$("div#frm").fadeOut('slow');
			
			setTimeout('$("div#thx").fadeIn("fast");',500);
			
			$("legend").html("Thanks! We will see you at the seminar.")
			//alert("Form Complete")
			}	
		})
		
		return false;
	}
	
function getintouch(){
		$.ajax({
			type: "POST",
			url: "http://www.highperformancedevelopment.co.uk/index.php",
			data: $("form.contact").serialize(),
			success: function()
			{
			$("div#frm").fadeOut('slow');
			
			setTimeout('$("div#thx").fadeIn("fast");',500);
			
			$("legend").html("Thanks! We will be in touch soon.")
			//alert("Form Complete")
			}	
		})
		return false;
	}
