/*****************************
	BASICS
*****************************/
	
	function swapStyle(div, toStyle){
		div.className = toStyle;
	}
	
	function fadeTo (element, fadeNum){
		var el = $(element);
		el.fade(fadeNum);
	}
	
	function vimeoPopup(width,height,src)
	{
		window.open("http://lab.rockwellgroup.com/vimeowindow.php?width="+width+"&height="+height+"&src="+src,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width="+width+", height="+height);
	};