$(document).ready(function() {
	// home page rotator
    $('#carousel ul').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 8000,
		speed: 'slow',
		pager: '#pager',
		pause: 'true',
		cleartypeNoBg: 'true'
	});
	
	// videos
	$("a.geoff-video").click(function(){
		var data = $(this).closest(".video").html();
	
		data = data.toString().replace(/139/g, '469').replace(/201/g, '720');
		
		$(".media-main").html(data);

		if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		}else{
			$.scrollTo(".main h1", 400);
		}
	});
});
