$(function() {
	$('.primary_nav li a').append('<span class="hover"></span>');

	$('.primary_nav li a span')
		.css('opacity', 0)
		.mouseover(function () {
			$(this).stop().animate({
				'opacity': 1
				},
				200,
				'easeOutQuad'
			);
		})
		.mouseout(function(){
			$(this).stop().animate({
				'opacity': 0
				},
				300,
				'easeInQuint'
			);
		});

	$('.secondary_nav li:not(".active") a')
		.mouseover(function () {
			$(this).stop().animate({
				opacity: 0.8,
				color: '#d3ffff'
				},
				200,
				'easeOutQuad'
			);
		})
		.mouseout(function(){
			$(this).stop().animate({
				opacity: 1,
				color: '#98cbe8'
				},
				400,
				'easeInQuint'
			);
		});

	$('.free_trial_modal').colorbox({ width: 986, height: 640 });
	$('.video_modal').colorbox({ iframe: true, width: 760, height: 550 });
})
