$(document).ready(
	function() {
		ContentCorrect();

		//RADIO PLAY ON LOAD
		if ($.cookie("radio_trak") && $.cookie("radio_trak") != -1) {
			var radio_track = $.cookie("radio_trak");
			$(".radio select").val(radio_track);
			$("#radio_player").html('<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" height="0" width="0"><param name="url" value="' + radio_track + '"><embed type="application/x-mplayer2" src="' + radio_track + '" showControls="0" autostart="1" showstatusbar="0" autorewind="0" height="0" width="0"></object>');
			$(".radio img").replaceWith('<img src="/tpl/img/btn_radio_paused.jpg" width="25" height="25" alt="Остановить воспроизведение" title="Остановить воспроизведение" onMouseOver="this.src=\'/tpl/img/btn_radio_paused_hover.jpg\'" onMouseOut="this.src=\'/tpl/img/btn_radio_paused.jpg\'">');
		}
		
		//PLAY/STOP RADIO
		$(".radio img").live("click",
			function () {
				if (this.src.indexOf("play") != -1) {
					var radio_track = $(".radio select").val();
					$.cookie("radio_trak", null, {path: "/", domain: "woman.hutor.ru"});
					$.cookie("radio_trak", radio_track, {path: "/", domain: "woman.hutor.ru"});
					$("#radio_player").html('<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" height="0" width="0"><param name="url" value="' + radio_track + '"><embed type="application/x-mplayer2" src="' + radio_track + '" showControls="0" autostart="1" showstatusbar="0" autorewind="0" height="0" width="0"></object>');
					$(this).replaceWith('<img src="/tpl/img/btn_radio_paused.jpg" width="25" height="25" alt="Остановить воспроизведение" title="Остановить воспроизведение" onMouseOver="this.src=\'/tpl/img/btn_radio_paused_hover.jpg\'" onMouseOut="this.src=\'/tpl/img/btn_radio_paused.jpg\'">');
				} else {
					$.cookie("radio_trak", null, {path: "/", domain: "woman.hutor.ru"});
					$.cookie("radio_trak", -1, {path: "/", domain: "woman.hutor.ru"});
					$("#radio_player").empty();
					$(this).replaceWith('<img src="/tpl/img/btn_radio_play.jpg" width="25" height="25" alt="Начать воспроизведение" title="Начать воспроизведение" onMouseOver="this.src=\'/tpl/img/btn_radio_play_hover.jpg\'" onMouseOut="this.src=\'/tpl/img/btn_radio_play.jpg\'">');
				}
			}
		);
		
		//RADIO TRACK CHANGE
		$(".radio select").change(
			function () {
				if ($(".radio img").get(0).src.indexOf("paused") != -1) {
					$.cookie("radio_trak", null, {path: "/", domain: "woman.hutor.ru"});
					$.cookie("radio_trak", this.value, {path: "/", domain: "woman.hutor.ru"});
					$("#radio_player").html('<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" height="0" width="0"><param name="url" value="' + this.value + '"><embed type="application/x-mplayer2" src="' + radio_track + '" showControls="0" autostart="1" showstatusbar="0" autorewind="0" height="0" width="0"></object>');
				}
			}
		);
		
	/////////////
	}
);

//CHMOKI
function Chmoki (obj, url) {
	$.post ("/engine/module/kiss.php",
		{
			type: "test-request",
			url: url
		},
		onAjaxSuccess
	);
	function onAjaxSuccess() {
		$(obj).replaceWith("<span class='kiss_answer'>Ваш голос учтён</span>");
	}
}

//FOOTER CORRECT
function ContentCorrect () {
	$(".container").css("height","auto");
	if ($(document).height()-81 <= $(window).height()) {
		var document_height = $(document).height() - 81;
		$(".container").height(document_height);
		$(".container_inside").height(document_height);
		$(".content").height(document_height);
	}
}