Cufon.replace('h1', { fontSize: '18px', fontWeight: 'normal' });
Cufon.replace('h3', { fontSize: '18px', fontWeight: 'normal', color: '#fe0000'});

imgr = 1;

var ChangeImg = function()
{
	imgr++;
	
	if (imgr > 3)
	{
		imgr = 1;	
	}

	jQuery("#RotateImg").ImageSwitch({
		NewImage:"uploads/tf/img"+imgr+".jpg", 
		Speed:1500
	});
}

$(document).ready(function(){
	setInterval(ChangeImg, 5000);  
});


