function show_models (id) {
	$.post("ajax.php", {id: id, show: 'show_models'},
	function (data) {
		//alert (data);
		document.getElementById('models').innerHTML = data;
	},
	"html");
}

function show_pic (id) {
	$.post("ajax.php", {id: id, show: 'show_pic'},
	function (data) {
		//alert (data);
		document.getElementById('show_pics').innerHTML = data;
	},
	"html");
}

function show_index_pic(id) {
	$.post("ajax.php", {id: id, show: 'show_index_pic'},
	function (data) {
		document.getElementById('index_pics').innerHTML = data;
	},
	"html");
}

function show_menu(id) {
	$.post("ajax.php", {id: id, show: 'show_index_pic'},
	function (data) {
		document.getElementById('vip_options').innerHTML = data;
	},
	"html");
}

function show_events(id) {
	$.post("ajax.php", {id: id, show: 'show_events'},
	function (data) {
		document.getElementById('vip_options').innerHTML = data;
	},
	"html");
}

function show_promos(id) {
	$.post("ajax.php", {id: id, show: 'show_promos'},
	function (data) {
		document.getElementById('vip_options').innerHTML = data;
	},
	"html");
}