/* jQuery Engine - Suiche Desarrollos */

// Nav
$('#wrapper').mouseenter(function () {
		$('nav').fadeIn('slow');
	});
$('#wrapper').mouseleave(function () {
		$('nav').fadeOut('slow');	});

// Nav Engine
$('.navitem').click(function () {
		$('#logo').animate({
		marginTop: '50',
		marginLeft: '50',
		height: '44',
		width: '190',
		})
		$('#logoimg').animate({
		height: '60',
		width: '190',
		})
	});
$('#logo').click(function () {
		$('#logo').animate({
		marginTop: '85',
		marginLeft: '285',
		height: '370',
		width: '390',
		})
		$('#logoimg').animate({
		height: '370',
		width: '1130',
		})
		$('.main').fadeOut('fast');
	});
$('#suiche').click(function () {
		$('#dsuiche').fadeIn('fast');
		$('#dclientes').fadeOut('fast');
		$('#dcontacto').fadeOut('fast');
		$('#dextra').fadeOut('fast');
		});
$('#clientes').click(function () {
		$('#dsuiche').fadeOut('fast');
		$('#dclientes').fadeIn('fast');
		$('#dcontacto').fadeOut('fast');
		$('#dextra').fadeOut('fast');
		});
$('#contacto').click(function () {
		$('#dsuiche').fadeOut('fast');
		$('#dclientes').fadeOut('fast');
		$('#dcontacto').fadeIn('fast');
		$('#dextra').fadeOut('fast');
		});
$('#extra').click(function () {
		$('#dsuiche').fadeOut('fast');
		$('#dclientes').fadeOut('fast');
		$('#dcontacto').fadeOut('fast');
		$('#dextra').fadeIn('fast');
		});

