$(document).ready(function() {
	if ($('#homead').html() == '') {$('#hometogglead').hide(); $startpanel = 1;} else {$startpanel = 0;}
	$('#homenewsarea .panel').hide();
	$('#homenewsarea .panel:eq('+$startpanel+')').fadeIn();
	$('#hometoggle li:eq('+$startpanel+')').addClass('on');
	$('#hometoggle li').click(function() {toggleTo($(this).index());});
	if ($startpanel == 0) {$timeouthomead = window.setTimeout("toggleTo(1)", $homeadinterval);}
});
function toggleTo($x) {
	if ($startpanel == 0) {clearTimeout($timeouthomead);}
	$('#hometoggle li').removeClass('on');
	$('#hometoggle li:eq('+$x+')').addClass('on');
	$('#homenewsarea .panel').fadeOut(600);
	$('#homenewsarea .panel:eq('+$x+')').fadeIn(600);
}
