$(document).ready(function() {

	// logo fade in on home page render
	$('#logo').hide();
	$('#logo').fadeIn(2000, function() {
		$('#logo').animate({
			opacity: 1.0
		},2000).fadeOut(500, function() {
			$('#white').fadeOut(500);
		});
	});
	
	// toggle photos and videos
	$('a.tab_photos').click(function() {
		$('a.tab_videos').removeClass('sel');
		$('#content_videos').hide();
		$('#content_photos').show();
		$('a.tab_photos').addClass('sel');
		return false;
	})
	$('a.tab_videos').click(function() {
		$('a.tab_photos').removeClass('sel');
		$('#content_photos').hide();
		$('#content_videos').show();
		$('a.tab_videos').addClass('sel');
		return false;
	});
	
	// video setup
	$('.video_thmbs ul li a').click(function() {
		_href = $(this).attr('href');
		jwplayer('video_player').setup({
			flashplayer: '_flash/player.swf',
			file: ''+ _href + '',
			height: 508,
			width: 686,
		});
		return false;
	});
});
