$(document).ready(function() {
	//Side Tab
	$('#gradProgTab').halfTab({
		'size'			:	'custom',
		'panelWidth'	:	'990',
		'panelHeight'	:	'842'
		//'panelHeight'	:	'642'
	});
	//Interactive Piece
	$('#hpInteractive').jayCarouselS({
		'randomStart'	:	'yeah',
		'autoRotate'	:	'yeah',
		'size'			:	'custom',
		'carWidth'		:	'942',
		'carHeight'		: 	'480',
		'sectionWidth'	:	'942',
		'timer'			:	'12000'
	});
	//News, Events, Faculty Tabs
	var tabCount = $('.bTab').length;
	$('.bTab:first').addClass('selected');
	$('#tabContainer .tabContent').css('display','none');
	$('#tabContainer .tabContent:first').css('display','block');
	$('.bTab a').live('click', function(){
		var clickedId = $(this).attr('href').replace('#','');
		$('.bTab').removeClass('selected');
		$('#tabContainer .tabContent').css('display','none');
		$(this).parent('h2').addClass('selected');
		$('#'+clickedId).css('display','block');
		return false;
	});
	//News Carousel
	$('#hpNewsCarousel').jayCarousel({
		'size'			:	'custom',
		'increment'		:	3,
		'carWidth'		:	'872',
		'carHeight'		: 	'380',
		'sectionWidth'	:	'293'
	});
	//Events Carousel
	$('#eventCarousel').jayCarouselE({
		'size'			:	'custom',
		'increment'		:	1,
		'carWidth'		:	'274',
		'carHeight'		: 	'380',
		'sectionWidth'	:	'274'
	});
	//News JPG Fancybox opener. Removed and written dynamically in the XSLT to prevent the stringing together of multiple photos into a gallery
	/*
	$('#tabNews .enlarge').fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'overlayOpacity'		: 0.9,
		'hideOnContentClick': false
	});
	*/
	//Events JPG Fancybox opener. Removed and written dynamically in the XSLT to prevent the stringing together of multiple photos into a gallery
	/*
	$('#tabEvents .enlarge').fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'overlayOpacity'		: 0.9,
		'hideOnContentClick': false
	});
	*/
	//Faculty JPG Fancybox opener
	$('#tabFaculty .enlarge').fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'overlayOpacity'		: 0.9,
		'hideOnContentClick': false
	});
});

