$(document).ready(	
	function() {
		$(".container").wtRotator({
			width:920,
			height:350,
			button_width:15,
			button_height:15,
			button_margin:4,
			auto_start:true,
			delay:5000,
			transition:"random",
			transition_speed:800,
			cpanel_align:"BR",
			display_thumbs:true,
			display_dbuttons:false,
			display_playbutton:false,
			display_tooltip:false,
			display_numbers:false,
			display_timer:true,
			mouseover_pause:false,
			cpanel_mouseover:false,
			text_mouseover:false,
			text_effect:"fade",
			text_sync:true,
			shuffle:false,
			block_size:75,
			vert_size:55,
			horz_size:50,
			block_delay:25,
			vstripe_delay:75,
			hstripe_delay:180					
		});
	}
);

function updateActive(id) {
	var possibles = jQuery("nav ul a");

	var chosen = jQuery(possibles).filter("[href*=" + id + "]");
	var li = jQuery(chosen).parent().get(0);
	jQuery("nav ul li").removeClass("here");
	jQuery(li).addClass("here");
}

