$(function() {
	$( "#dialog" ).dialog({
		autoOpen: false,
		show: "blind",
		hide: "fade",
		modal: true,
		open: function()
			{
				$.post("../scripts/contact.php", $("#Contact").serialize());
		
				document.getElementById('Name').value = '';
				document.getElementById('Telephone').value = '';
				document.getElementById('Email').value = '';
				document.getElementById('Enquiry').value = '';
			}

	});

	$( "#Send" ).click(function() {
		$( "#dialog" ).dialog( "open" );
		return false;
	});
});

jQuery(document).ready(function() {
    jQuery('#jcarousel-list').jcarousel({
       buttonNextHTML: '<img id="left" src="http://www.focusedonlearning.com/images/left.png" />',
       buttonPrevHTML: '<img id="right" src="http://www.focusedonlearning.com/images/right.png" />',
	wrap: 'circular',
	scroll: 1
    });
});

