/**
 * scripts.js
 *
 * Adds some magic to our pretty stuff.
 */

jQuery(document).ready(function($) {

	/**
	 * Hide no javascript div.
	 */

	$('#noscript').hide();

	/**
	 * Drop-down menu navigation fix.
	 */

	$("ul.menu > li").hover(function() {
		$(this).addClass("sp_hover");
	}, function() {
		$(this).removeClass("sp_hover");
	});

	/*
	 * Video.
	 */
	 VideoJS.setupAllWhenReady();
	 
	 
$('#disclaimer_popup').click(function(event){
	if(this == event.target)
		{
			var page_link = $(this).attr('href');
			window.open(page_link, '', 'width=400,height=300,resizable=yes,scrollbars=yes');
			return false;
		}
	});

});

