//  Links
jQuery(document).ready(function($){
 $('li.nav').click(function () {
 $('.active').removeClass('active');
 $(this).addClass('active');
 $('.content').slideUp(2000);
 var content_show = $(this).attr('title');
 $('#'+content_show).slideDown(2000);
 });
});

//  Contact form
jQuery(document).ready(function($){
	$('#Contactform').ajaxForm({
	target: '#error',
	clearForm: true,
	resetForm: true,
	success: function() {
	$('#error').fadeIn('slow');
		}
	});
});


$(window).load(function() {
	$('#slider').nivoSlider();
});
