// JavaScript Document
$(document).ready(function(e) {
    $('#btn1').click(function () {
		document.location='index.html';
	});
	
	$('#btn2').click(function () {
		document.location='productos.php';
	});
	
	$('#btn3').click(function () {
		document.location='exito.php';
	});
	
	$('#btn4').click(function () {
		document.location='contacto.php';
	});
});
