// twitter cycler
$(document).ready(function(){	
	$("#cb-twitter").easySlider({
		nextText:'&gt;&gt; next',
		orientation:'horizontal'
	});
	$("body").addClass("jquery"); // define as javascript ready
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});

// video swapper
function swapVideo(videoID) {
	var videoDIV = document.getElementById('videoDIV');
	videoDIV.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="385">' +
	'<param name="movie" value="http://www.youtube.com/v/' + videoID + '&rel=0&hl=en&fs=1&autoplay=1"></param>' +
	'<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>' +
	'<embed src="http://www.youtube.com/v/' + videoID + '&rel=0&hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed>';
}