$(document).ready(function(){
	$window_width = $(document).width();//gets window width
	$('#header_bottom, #slogan_wrapper, #division').css('width',$window_width);//sets width of elements to the width of the window
	$(window).resize(function() {//if the window is rezised the width changes accordingly
		$('#header_bottom, #slogan_wrapper, #division, .foot, #bot_back').css('width',$window_width);
	});
	
	/*Lighbox*/
	 $(function() {
        $('#gallery a').lightBox();
    });
	
	
	
	/* form validation  */
	$("#form").validate({
		rules: {
			name: "required",
			country: "required",
			email: {
				required: true,
				email: true
			}
		},
		messages: {
			name: "Por favor ingrese nombre y apellido",
			country: "Por favor ingrese pa&iacute;s de residencia",
			email: "Por favor ingrese un e-mail valido"
		}
	});

	$('#reset').click(function(){
		$('#name, #email, #message, #country').val('');
	});
	
});
