function switchApps(app) {
	if(app == 'iphone') {
		$('#iphone').fadeIn();
		$('#iphone2').css('display', 'none');
	} else {
		$('#iphone2').fadeIn();
		$('#iphone').css('display', 'none');
	}
}