$(function() {
	// sample post using ajax
	$('#click').click(function() {
		$.post('/app/contact/send/param1/param2/param3',{message:'value'},function(response) {
			alert(response);
		});
		
		return false;
	});		
	
	// back to top link
	$(window).scroll(function() {
		if($(this).scrollTop() != 0) {
			$('#toTop').fadeIn();
		} else {
			$('#toTop').fadeOut();
		}
	});

	$('#toTop').click(function() {
		$('body,html').animate({scrollTop:0},800);
	});		
	
});