﻿function fadeHeader(){
	setInterval('randomHeader()', 10000);
}

function changeHeader(){
	$("div#header").animate({opacity: 0},1000, function(){
		randomHeader();
		$(this).animate({opacity: 100},1000);
	});
}

function randomHeader(){
    num = Math.round(Math.random()*7) + 1;
    $("div#header").css("background", "url('fileadmin\/templates\/web-nueva\/themes\/castrelo\/css\/default\/header-bg-0" + num + ".jpg') no-repeat scroll 0 0 transparent");
}

function clearPassword(){
	/* Clear password in reg form */
    $('#tx-srfeuserregister-pi1-password').attr('value', '');
    $('#tx-srfeuserregister-pi1-password_again').attr('value', '');
}
