function mobileVideoSwap() {
	
	if(jQuery.browser.mobile == true) {

		$('li.clickable').each(function() {
			if( $(this).hasClass('video') ) {
				$(this).unbind().bind('click', function(event) {
					window.location = $(this).find('a[name="mobileVideo"]').attr('rel');
				});
			}
		});

		$('a[name="mobileVideo"]').each(function() {
			$(this).unbind().attr('href',$(this).attr('rel')).bind('click', function(event) {
				window.location = $(this).attr('rel');
			});
		});
	}
}
