// legal popup
$(function() {
	$('#ftrDisclaimer a[rel="legal"]').click(function(e) {
		var height	= 600;
		var width	= 650;
		window.open(this.href, 'legal_popup', 'height='+height+', left='+(screen.width-width)/2+', location=no, resizable=no, scrollbars=yes, status=no, toolbar=no, top='+(screen.height-height)/2+', width='+width);
		e.preventDefault();
	});
});

// menu
$(function() {
	$('.level1').hover(
		function() { $('ul',this).css('display','block').prev('a').css('color','#fff'); },
		function() { $('ul',this).css('display','none').prev('a').css('color',''); }
	);
});

// home video
$(function() {
	$('#videoBtns a').live('click',function(e) {
		clicked = $(this).attr('href');
		$('#videoLoader').fadeOut('fast',function() {
			$(this).html($(clicked+'Preview').html());
			$(this).fadeIn('fast');
		})
		e.preventDefault();
	})
	
	$('#videoLoader a').live('click',function(e) {
		clicked = $(this).attr('href');
		clicked = clicked.split('#');
		clicked = '#' + clicked[1];
		$('#videoLoader').fadeOut('fast',function() {
			$(this).html($(clicked+'Video').html());
			$(this).fadeIn('fast');
		});
		e.preventDefault();
	});
});

// interior video
$(function() {
	$('#showVideo').click(function(e) {
		$(this).fadeOut('fast',function() {
			$('#video').fadeIn('fast');
		});
		
		e.preventDefault();
   });
});
