jQuery(function($){
	if($('#flashinfo').length > 0) showInfo();
	if($('#diapo_txt img').length > 0) showDiapo();
	
	$('select.newscategories').change(function() {
		link = $(this).val();
		window.location.href= link;
	});
});

var pathUploads = 'images/other/';

info = 0;
function showInfo()
{
	var i = 0;
	$('#flashinfo_txt > div').each(function(j)
	{
		if(i==info) $(this).show();
		else $(this).hide();
		i++;
	});
	info = (info>=i-1) ? 0 : info+1;
	$('#flashinfo_txt').fadeIn("slow", function(){
		setTimeout('hideInfo()', 5000);
	});
}
function hideInfo()
{
	$('#flashinfo_txt').fadeOut("slow", function(){
		showInfo();
	});
}

photo = 0;
function showDiapo()
{
	var i = 0;
	$('#diapo_txt img').each(function(j)
	{
		if(i==photo) $(this).show();
		else $(this).hide();
		i++;
	});
	photo = (photo>=i-1) ? 0 : photo+1;
	$('#diapo_txt').fadeIn("slow", function(){
		setTimeout('hideDiapo()', 5000);
	});
}
function hideDiapo()
{
	$('#diapo_txt').fadeOut("slow", function(){
		showDiapo();
	});
}
