currentPage = '';


$(function() {
	
	// Master Ajax
	$('#container').load('pages/home.php', function() {
			
		currentPage = 'home';
						
		$(this).hide()
			.slideDown(500);
			
	});
});

function getPage(page) {

	if(currentPage != page){
		
		$('#container').load('pages/' + page + '.php', function() {
			
			currentPage = page;
						
			$(this).hide()
				.slideDown(500);
			
		});	
	}
}

function openDialog() {

	$('<div id="dialog" />').load("new_file.html").dialog(
		{
			bgiframe: true, 
			modal: true,
			title: "ОБЩИ УСЛОВИЯ", 
			width: 400,
			height: 400,
			buttons: {
				"Ok": function() { 
					$(this).dialog("close"); 
				}, 
				"Cancel": function() { 
					$(this).dialog("close"); 
				} 
			}
		}
	);
}

function galleryDialog(img) {

	$('<div id="dialog" />').load("pages/gallery_big_img.php?img=" + img).dialog(
		{
			bgiframe: true, 
			modal: true,
			title: "Галерия: снимки", 
			width: 650,
			height: 600,
			buttons: {
				"Затвори": function() { 
					$(this).dialog("close"); 
				}
			}
		}
	);
}

function openVideo(video) {

	$('<div id="dialog"/>').load("flowplayer/index.php?video=" + video).dialog(
		{
			bgiframe: true, 
			modal: true,
			title: "Галерия: видео", 
			width: 700,
			height: 610,
			buttons: {
				"Затвори": function() { 
					$(this).dialog("close"); 
				}
			}
		}
	);
}