//////////////////// VARIABLES ////////////////////
var flatlay = 1;
var nextStop;


//////////////////// POPUP ////////////////////
function pop(popW,popH,popName,popURL,popScroll) {
	w = popW;
	h = popH;
	l = ((screen.width-w)/2);
	t = ((screen.height-h)/2.5);
	proj = popName;
	projURL = popURL;
	scrollWin = popScroll;
	arg = 'width='+w+',height='+h+',left='+l+',top='+t+',scrollbars='+scrollWin+',resize=no';
	popup = window.open(projURL, proj, arg);
	popup.focus();	
}


//////////////////// ON READY ////////////////////

$(document).ready(function() {

	$('.video').hide();
	$('.video').slideToggle('500');


////////////// END ON READY //////////////
});
