// JavaScript Document
$(document).ready(function() {
						   
	$('#hero').nivoSlider({
		effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
		slices: 15, // For slice animations
		boxCols: 8, // For box animations
		boxRows: 4, // For box animations
		animSpeed: 300, // Slide transition speed
		pauseTime: 3000, // How long each slide will show
		directionNav: false, // Next & Prev navigation
		controlNav: false, // 1,2,3... navigation
		pauseOnHover: true // Stop animation while hovering
	});
	
	$('#carousel').galleryView({
		panel_width: 768,
		panel_height: 400,
		frame_width: 170,
		frame_height: 89,
      	transition_speed: 500,
		easing: 'easeInOutQuad',
		transition_interval: 10000,
		filmstrip_position: 'top',
		frame_opacity: 0.6,
		overlay_opacity: 0,		
		show_captions: true,
		pause_on_hover: true
	});
	
	$('#search-results tr:even').addClass('highlight');
	
	$('#featuredcourseholder div.featuredcourse:even').css('margin-right', '5px');


});

