// JavaScript Document
var NSQP2 = {
	init : function(){
		NSQP2.cambiarTamanio();
		NSQP2.animarMenu();
		window.addEvent('resize',function(){
			NSQP2.cambiarTamanio();
		});
		$$('a.hacerblank').addEvent('click',function(element){
			window.open(this.href, this.title, "target=blank,scrollbars=yes,location=yes,status=yes,menubar=yes,resizable=yes,toolbar=yes");
			return false;
		});
		if ($chk($('frclub'))){
			$('frclub').addEvent('submit',function(){
				sMsg = '';
				var filter=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; 
				if ($('nombre').value == ''){
					sMsg += 'Debe rellenar el campo Nombre';
				}
				else if ($('apellidos').value == ''){
					sMsg += 'Debe rellenar el campo Apellidos';
				}
				else if ($('edad').value == ''){
					sMsg += 'Debe rellenar el campo Edad';
				}
				else if ($('email').value == ''){
					sMsg += 'Debe rellenar el campo Email';
				}
				else if (!(filter.test($('email').value))){
					sMsg += 'El email es incorrecto';
				}
				if (sMsg == '')
					return true;
				else{
					alert(sMsg);
					return false;
				}

			});
		}
	},
	animarMenu : function(){
		if ($chk($('submenu'))){
			if ($('submenu').className != 'abierto'){
				var subFx = new Fx.Slide('submenu',{duration: 1000}).hide();
				$('lnk_coleccion').addEvent('click',function(){
					subFx.toggle();
					return false;
				});
			}
		}
		if ($('lnk_coleccion').className != 'seleccionado'){
			$('lnk_coleccion').addEvents({
			'mouseover' : function(){
				$('lnk_coleccion').setStyle('background','transparent url(/img/comunes/back_menu_sel.png) 0 0 no-repeat');
			},
			'mouseout'  : function(){
				$('lnk_coleccion').setStyle('background','none');
			}
			});
		}
	},
	cambiarTamanio : function(){
		if (window.getSize().x > 1024){
			$('img_back').setStyle('width', (window.getSize().x));
			$('content').setStyle('width', (window.getSize().x)-173);
			//$('footer').setStyle('width', (window.getSize().x)-10);
			alto = (window.getSize().x*3425)/5138;
			$('img_back').setStyle('height', alto);
			if (alto < window.getSize().y){
				$('cnt_izq').setStyle('height', (window.getSize().y)-18);
				$('content').setStyle('height', (window.getSize().y)-18);
			}
			else{
				$('cnt_izq').setStyle('height', alto-15);
				$('content').setStyle('height', alto-15);
			}
			//$('footer').setStyle('top', alto-28);
		}
		else{
			$('img_back').setStyle('width', 1024);
			$('content').setStyle('width', 861);
			//$('footer').setStyle('width', 1014);
			$('img_back').setStyle('height', 686);
			$('cnt_izq').setStyle('height', (window.getSize().y)-18);
			$('content').setStyle('height', (window.getSize().y)-18);
			//$('footer').setStyle('top', 655);
		}
		/*if (window.getSize().y > 683){
			$('img_back').setStyle('height', (window.getSize().y)-10);
			$('cnt_izq').setStyle('height', (window.getSize().y)-28);
			$('content').setStyle('height', (window.getSize().y)-28);
			$('footer').setStyle('top', (window.getSize().y)-28);
		}
		else{
			$('img_back').setStyle('height', 673);
			$('cnt_izq').setStyle('height', 655);
			$('content').setStyle('height', 655);
			$('footer').setStyle('top', 655);
		}*/
	}
}
window.addEvent('domready',function(){
	NSQP2.init();
});
