
$(document).ready( function() { $("h1.title").hide(); } );

$(document).everyTime(7000, function(i) {
  $('#home_panel').fadeOut("slow",function callback() { 

if(((i % 5) + 1) == 1)
{
	$('#home_panel').html('<a href="http://www.positive-futures.net/index.php?q=node/5"><img alt="" src="/homepage/homelink1.png" /></a>');
}

if(((i % 5) + 1) == 2)
{
	$('#home_panel').html('<a href="http://www.positive-futures.net/index.php?q=node/22"><img alt="" src="/homepage/homelink2.png" /></a>');
}

if(((i % 5) + 1) == 3)
{
	$('#home_panel').html('<a href="http://www.positive-futures.net/index.php?q=publications"><img alt="" src="/homepage/homelink3.png" /></a>');
}

if(((i % 5) + 1) == 4)
{
	$('#home_panel').html('<a href="http://www.positive-futures.net/index.php?q=node/54"><img alt="" src="/homepage/homelink4.png" /></a>');
}

if(((i % 5) + 1) == 5)
{
	$('#home_panel').html('<a href="http://www.irishfa.com/" target="_blank"><img alt="" src="/homepage/homelink5.png" /></a>');
}

  $('#home_panel').fadeIn("slow");

});
 
});


//$(document).everyTime(10000, function(i) {
//  $('#home_photo').fadeOut("slow",function callback() { 

$('#home_panel').html('<a href="http://www.positive-futures.net/index.php?q=node/5"><img alt="" src="/homepage/homelink1.png" /></a>');

var i = Math.floor(Math.random()*5) + 1;
$('#home_photo').html('<img alt="" src="/homepage/homepage_' + ((i % 5) + 1) + '.png" />');

//});
  
//});
