// JavaScript Document
function startExample(example) {
	
	$('#navigate2').css({
		'display': 'none'
	});
	
	switch(example) {
		
		case 2:
			$('#navigate2').css({
				'display': 'block'
			});
			PhotoNav.init('navigate2', 150, 500, false);
		break;
		
	}
}
