function iphone_scroll(){
		var myFile = document.location.toString();
		var myAnchor = '';
		$sep = '#-';
		if (myFile.match($sep)) {
		  	var myAnchor = myFile.split($sep)[1];
			$('#accordion a#'+myAnchor).next().show();
		}
		$(this).delay(400,function(){
			$.scrollTo('a#'+myAnchor, 2000, {offset:-20});
		})
}