$(document).ready(function(){

/* ====================== */
/* = MENÚ DE NAVEGACIÓN = */
/* ====================== */


	$('ul.submenu').not('.active').hide();
	$('li#topmenu > ul > li').not('.actual').hover(function(){
		$('ul.submenu.active').hide();
		$('li#topmenu > ul > li.actual').addClass('last_actual').removeClass('actual');
		$(this).addClass('actual');
		
		
		$(this).children('ul.submenu').show();
	}, function(){
		$(this).children('ul.submenu').hide();
		$('ul.submenu.active').show();
		$('li#topmenu > ul > li.last_actual').addClass('actual').removeClass('last_actual');
		$(this).removeClass('actual');
		
	});
	

// ============
// = FANCYBOX =
// ============


if($('#content.gallery').length){

	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		'overlayOpacity'	: '0',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
}

/* ============================ */
/* = VALIDADOR DE FORMULARIOS = */
/* = Enviar relato, hazte socio = */
/* ============================ */

if($('#content.club form').length)
{

	$("#content.club form").validate({
	  rules: {
	    email: {
	      required: true,
	      email: true
	    },
		cp: {
	      required: true,
		  digits: true,
		  minlength: 5,
		  maxlength: 6
		},
		dni: {
		  required: true,
		  minlength: 9,
		  maxlength: 9
		}
	  },
  	messages: {
	dni: {
		minlength: "El formato es 12345678A",
		maxlength: "El formato es 12345678A"
		}
	},
	  submitHandler: function(form) {
      form.submit();
	}
 });
}

// =============
// = SWFOBJECT =
// =============

swfobject.embedSWF("http://www.coroneltapiocca.com/flash/bannerHome.swf", "banner_flash", "562", "304", "9.0.0");


});

