$(document).ready(function() {	
	$("a.img").fancybox({
		'padding': 0,
		'overlayShow': true,
		'hideOnContentClick': true,
		'frameWidth': 600,
		'frameHeight': 450,
		'autoScale': true,
		'showNavArrows': false
	});
	
	$("a.video").click(function() {
		$.fancybox({
			'overlayShow': true,
			'padding': 20,
			'autoScale': false,
			'transitionIn': 'none',
			'transitionOut': 'none',
			'titleShow' : false,
			'showNavArrows': false,
			'width': 600,
			'height': 450,
			'href': this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type': 'swf'
		});
		return false;
	});
});

$(document).ready(function(){
	$('#newsticker').innerfade({
		animationtype: 'fade',
		speed: 500,
		timeout: 5000,
		type: 'sequence',
		containerheight: '1em'
	});
});

$(document).ready(function(){
	
	$('#sub-nav a.currentAncestor').attr('href', 'javascript:void(0);');
	
	if ($("#sub-nav a.currentAncestor").length) {
		$('#sub-nav-show-link').html($('#sub-nav a.currentAncestor').html());
	} else {
		$('#sub-nav-show-link').html($('#nav .current').html());
	}
	
	$('#sub-nav-show-link').click(function(){
		$('#sub-nav-show-link').toggleClass('active');
  		$('#sub-nav').slideToggle(500);
	});
	
});
