var curr_no=0;
var timer_no=0;
var rotate_timer="";
var timer=4000;
var sh;
var fadetime = 700;

function showItem(no){
	if(curr_no!=no){
		resetItems();
		jQuery("#slide-"+no).fadeIn(fadetime);
		curr_no=no;
	}
}

function resetItems(){
	jQuery("#slide-"+curr_no).fadeOut(fadetime);
}
function autoRotate(){
	showItem(timer_no);
	timer_no++;
	
	if(timer_no >= jQuery("#caroussel div.slide").length) {
		timer_no=0;
	}
}

sh = setInterval(autoRotate, timer);


// Clear the input field
jQuery(document).ready(function(){
	jQuery('#header-subscribe, #side-subscribe').focus(function(){		
		if(jQuery(this).val() == 'Email Address') {
			jQuery(this).val('');
			jQuery(this).css('color', '#333');
		}
	})
	.blur(function(){		
		if(jQuery(this).val() == '') {
			jQuery(this).val('Email Address');
			jQuery(this).css('color', '#999');
		}
	});
});
