function p_show(obj)
{
	$('#pd').attr('src', 'themes/default/home/img/' + obj.id + 'a.jpg');
	$('#refs ul li').removeClass('sel');
	$(obj).addClass('sel');
	$('#info').html($('img', obj).attr('alt'));
	p_cur = parseInt(obj.id.substr(1));
}
function p_next()
{
	if (++p_cur > p_max) p_cur = 1;
	p_show($('#f' + p_cur)[0]);
}
function p_prev()
{
	if (--p_cur < 1) p_cur = p_max;
	p_show($('#f' + p_cur)[0]);
}
function p_pause()
{
	if (p_int)
	{
		clearInterval(p_int);
		p_int = undefined;
	}
	else
	{
		p_auto();
	}
}
function p_auto()
{
	p_int = setInterval('p_next()', 15000);
}
var p_cur = 1;
var p_max = 6;
var p_int;

