$(function(){
	
	$('body').addClass('js');
	
	// Set up global navigation hovers
	$('.h').bind('mouseenter mouseleave',function(){
		$(this).toggleClass('hover');
	});

	// Add video preview lightbox click events
	$('a.play-video').click(function(){
 		GB_show($(this).attr('href'),'400','600','iframe');
   		return false;
    });
			
});
	
