/*setup image rotator*/
$(function() {
	if($('#image-rotator').length) { $('#image-rotator').cycle({fx: 'fade', timeout: 12000, pager: '.buttons-container'});}
});


$(function() {
	i=0;
	var x = $(".header-classic p").length;
	if(x != "" || x != null) {
		$(".header-classic p").hide();

		function showText() {
			if(i==x){
				$(".header-classic p").fadeOut();
				i=0;
			} else {
				var fadingText = ".header-classic p:eq(" + i + ")";
				$(fadingText).fadeIn();
				i++;
			}
			if(i==0) setTimeout(showText, 3500);
			if (i!=0) setTimeout(showText, 1500);
		}
		
		$(function() {
			showText();
		});
		
	}
});
