/* JavaScript Document */
/* (c) 2010. Rosi - www.orosweb.hu */

$().ready(function() {
	$('.player_400').click(function() {
		$('#flv_player_div').remove();
		$('<div id="flv_player_div"></div>').appendTo('body');
		$.ajax({
			type: "POST",
			url: "js/player_400.php?flv=" + $(this).attr("href"),
			data: "ajax=1",
			success: function(response){
				$('#flv_player_div').html(response);
			}
		});
		$('#flv_player_div').modal({
			overlayClose:true,
			containerCss: {
				width: 400,
				height: 258,
				border: "0"
			}
                });
		return false;
	});

	$('.player_512').click(function() {
		$('#flv_player_div').remove();
		$('<div id="flv_player_div"></div>').appendTo('body');
		$.ajax({
			type: "POST",
			url: "/js/player_512.php?flv=" + $(this).attr("href"),
			data: "ajax=1",
			success: function(response){
				$('#flv_player_div').html(response);
			}
		});
		$('#flv_player_div').modal({
			overlayClose:true,
			containerCss: {
				width: 512,
				height: 320,
				border: "0"
			}
                });
		return false;
	});

	$('.kwicks').kwicks({
		spacing : 0,
		min  : 117,
		duration: 500,
		easing: 'easeOutCirc',
		isVertical: false
	});


	$("#sitemap_tree").treeview({
		collapsed: false,
		animated: "fast",
		control:"#sm_tcontrol",
		persist: "location"
	});
});
