$(document).ready(function() {
	$(function() {
		$(".swap").hover(function () {
			$(this).attr("src", $(this).attr("src").replace(/_off.png/, "_on.png"));
		},function () {
			$(this).attr("src", $(this).attr("src").replace(/_on.png/, "_off.png"));
		});
	});
	
	/*
$('#jesse').rotateRight(2);
	$('#kay').rotateLeft(1);
	$('#xander').rotateLeft(2);
	$('#georgy').rotateRight(1);
*/
	
	$("#vidLaunch a").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		true,
		'overlayOpacity':		'0.7',
		'overlayColor': '#000',
		'centerOnScroll': true
	});
});

function getUrl(addr) {  
	var r = $.ajax({  
		type: 'GET',  
		url: addr,  
		async: false  
	}).responseText;  
	return r;  
}

function lNav(addr){
	$('#videoContent').html(getUrl(addr)); 
}

