$(document).ready(function(){
	/*
	/*
	/* double click pro zobrazeni detailu
	*/
	$("#dataBox span").dblclick( function() {
		 a = $(this).attr("id");
		 id = a.replace("img_", "");
	 	 window.location.href="/M/" + id;
	  });
	/*
	/*
	/* hromadny vyber obrazku
	*/
	$('#dataBox').selectable({
		filter: "img",
		selected: function(ev, ui) {
			obj = $(ui.selected).parent().parent().children("h2").children("input");
			$(obj).attr({checked:"checked"});
			$(ui.selected).click( function() {
				objekt = $(ui.selected).parent().parent().children("h2").children("input");
				stav = $(objekt).attr("checked");
				//alert(stav);
				if(!stav) {
			
				} else {
					$("#dataBox tbody tr td div input").removeAttr("checked");
					$("#dataBox tbody tr td div a img").removeClass("ui-selected");
					$(ui.selected).children().children("a").addClass("img_active");
				}
			} );
		},
		unselecting: function(ev, ui) {
			$(ui.unselecting).parent().parent().children("h2").children("input").attr({checked:""});
		}
	});
	// odselektovani vyberu 
	$('#dataBox span').click( function() {
		//alert("klik");
		$("#dataBox span a img").removeClass("ui-selected");
		$("#dataBox input").removeAttr("checked");
	});
});
