// JavaScript Document

$(document).ready(function() {
				
	var agent = navigator.userAgent.toLowerCase();
								
	if (agent.indexOf('iphone') != -1 || agent.indexOf('ipad') != -1 || agent.indexOf('ipod') != -1) { // iPhone/IPad/IPod Device
		$('#feature_text').css('margin-top', '346px');
		
		$('#text').css('width', '460px');
		//$('#text').css('padding-left', '0px');
		$('#text p').css('line-height', '10px');
		//$('#text p').css('font-size', '0.833em');	
		$('#text p').css('font-size', '8px');	
		//$('#text p').css('letter-spacing', '0px');
		
		$('#tea_text').css('width', '420px');
		$('#tea_text').css('padding-left', '0px');
		$('#tea_text p').css('line-height', '10px');
		$('#tea_text p').css('font-size', '8px');
		
		$('#text_contact').css('width', '480px');
		$('#text_contact p').css('line-height', '1.05em');
	}
});
