
/************************ Clear input box *************************/
function clearTextbox(p_element) { p_element.value="" }

/************************	Image Rollover	***********************/
var currentImg;
$(function() {
	$('.rollover').hover(function() {
		currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	}, function() {
		currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});
});

/************ Home page rotating images ***************/

function cycleBan() {

	// Color the new active picture's number
	$('#circle' + (newBanner) ).attr('src','images/circle_empty.png');

	newBanner++;

	if (newBanner >= totalBan)
		newBanner = 0;

	$('#homeimgfade').fadeOut('fast', function(){
		document.banner.src=bannerImg[newBanner];

		// Color the new active picture's number
		$('#circle' + (newBanner) ).attr('src','images/circle_filled.png');

	});

	$('#homeimgfade').fadeIn("fast");

	// "4*1000" is 4 seconds
	sy = setTimeout("cycleBan()", 5000);

}







