$(document).ready(function(){
	if(isMobileBrowser()) {
		$('a[rel=touchscreen]').each(function(index){
			$(this).toggle(function(){
				$(this).next().show();
				$(this).css('color', '#68A9D5');
			},
			function(){
				$(this).next().hide();
				$(this).css('color', 'white');
			});
		});
	}
});

