//form contacto
$(document).ready(function(){
		$('#myForm').ajaxForm(function(data) {
									   
			$('#error_email').fadeOut("fast");
			$('#error').fadeOut("fast");
			if (data==1){
				$('#myForm').resetForm();
                $('#error').fadeOut("fast");
				$('#success').fadeIn("slow");
				$('#label').fadeOut("fast");
				$('#label1').fadeOut("fast");
				$('#label2').fadeOut("fast");
				$('#nameinput').fadeOut("fast");
				$('#emailinput').fadeOut("fast");
				$('#commentinput').fadeOut("fast");
				$('#submitinput').fadeOut("fast");
			}
			else if (data==2){
				$('#badserver').fadeIn("slow");
			}
			else if (data==3)
			{
				$('#error').fadeIn("slow");
				$('#welcome').fadeOut("slow");
			}
			else if (data==4)
			{
				$('#error_email').fadeIn("slow");
				$('#welcome').fadeOut("slow");
			}
		});
	});


$(document).ready(function() {
    // ScrollTo Effect	
	
	$('.portfolio_link').click(function(){
		$('html,body').scrollTo($('#h1_portfolio'), 800);	
		return false;
	});
	
	$('.aboutLink').click(function(){
		$('html,body').scrollTo($('#about'), 800);	
		return false;
	});
	
	$('.contacto_link').click(function(){
		$('html,body').scrollTo($('#contacto'), 800);	
		return false;
	});
	
	$('.top').click(function(){
		$('html,body').scrollTo($('#container'), 800);	
		return false;
	});

});

