$(document).ready(function() {

	$('div#top a').click(function() {
		var link = $(this).attr('href');
		$('#content').hide();
		$('#content').load(link+' #content');
		$('#content').fadeIn('slow');
		return false;
	});

	$('#submit').click(function(){
		if($('#concent').is(':checked')) {
			window.location='home.php';
		} else {
			alert('Please conform to our terms and conditions!');
		};
		return false;
	});
	
});
