jQuery(document).ready(function() {

	jQuery('a[rel*=facebox]').facebox();

	if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/Android/i))) { 
		$(document).bind('beforeReveal.facebox', function(e) {
			var id = $('#video').attr('rel')
			if (id) {
				window.location = 'http://vimeo.com/m/#/' + id;
				return false;
			}
		})
	}
	
});
