// JavaScript Document
$(function() {
	$("#wrZip").attr("maxlength","7").autotab().watermark('Zip...', {className:'watermark'});
	
	$(".home-events .events:has(.event:not(:first))").scrollable({size:1,loop:true}).circular().navigator({navi:'.navi .tabs'}).autoscroll({interval:8000});
	var dur = 600;
	$(".home-blog .wrapper .screen-loading").fadeIn(dur);
	$(".home-blog .wrapper .placeholder").load("/_content/www/_inc/_incBlog_.asp", "", function() {
		$(".home-blog .wrapper .screen-loading").fadeOut(dur/2);
		$(this).fadeIn(dur);
	});
	
	$("#wrFeature .feature").each(function() {
		$("#wrFeature .tabs .wrapper").append($("<a/>",{href:"#"}));
	});
	$("#wrFeature .tabs").tabs("#wrFeature .features > .feature", {tabs:".wrapper a", effect:"fade", fadeOutSpeed: 200, rotate:true}).slideshow({autoplay:true, interval: 15000, clickable:false});
	
});