$(document).ready(function(){
	
	
	$(".form-login input").each(function(){
		$(this).defaultValue($(this).attr("rel"));
	});
	
	$(".form-newsletter input").each(function(){
		$(this).defaultValue($(this).attr("rel"));
	});
	
	$(".form-generico").each(function(i) { 
		$(this).validate();
	});
	
	$(".form-newsletter").each(function(i) { 
		$(this).validate();
	});

	
	$('a[rel=external]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});

	if ( $('#map').length > 0 ) {
		showmaps();
	}

	
	$("a[rel='gallery']").colorbox({opacity:0.7});
	$("a[rel='video']").colorbox({iframe:true, width:650, height:550, current: ''});
	

	if ( $('#slider').length > 0 ) {
		$('#slider').cycle();	
	}
	
});
