$(document).ready(function () {	
	//топ фильмы
	$.ajax({
			type: 'GET',
			//target: '#calenar_ayax',
			url: 'http://mnogokino.com.ua/top10_ajax.php',
			scriptCharset: "windows-1251",
			contentType: 'application/x-www-form-urlencoded; charset=windows-1251;',
			dataType: "text",
		  	success: function(data){
		$('#top_10').html(decodeURIComponent(data));
		}
	});
	
	$.ajax({
		type: 'GET',
		//target: '#calenar_ayax',
		url: 'http://mnogokino.com.ua/preview_ajax.php',
		scriptCharset: "windows-1251",
		contentType: 'application/x-www-form-urlencoded; charset=windows-1251;',
		dataType: "text",
	  	success: function(data){
	$('#head_rel_film').html(decodeURIComponent(data));
	}
});
	$("#menu_alphabet").load("http://mnogokino.com.ua/templates/alphabet.tpl");
});
