
$(document).ready(function() {
	
	Shadowbox.init({overlayOpacity: .85});
	
	$('#LatestVideo .Video, #Videos .Video').hover(function() {
		$(this).find('.Play').stop(true, true).fadeIn(250);
	}, function() {
		$(this).find('.Play').stop(true, true).fadeOut(100);
	}).click(function(e) {
		if ($(e.target).is('a')) {
			var a = $(e.target);
			Shadowbox.open({
		        content:    a.attr('href'),
		        player:     'swf',
		        title:      a.attr('title'),
		        height:     600,
		        width:      729
		    });
			return false;
		}
		$(this).find('a').trigger('click');
		return false;
	}).css('cursor', 'pointer');
	
	$('#ContentContainer div.AllImages div.Image').each(function() {
		var el = $(this);
		
		var spyglass = $(document.createElement('div'));
		spyglass.addClass('Spyglass').css('cursor', 'pointer').click(function() {
			$(this).parent().find('a').eq(0).click();
		});
		
		el.prepend(spyglass).hover(function() {
			spyglass.stop(true, true).fadeIn(250);
		}, function() {
			spyglass.stop(true, true).fadeOut(100);
		});
	});
	
});

