$(document).ready(function(){
       $('.pritem_row').mouseover(function() {
           $(this).addClass('overgitem');
           id = $(this).attr('name_row');
           $('#name_row_'+id).addClass('overgitem');
       })
       $('.pritem_row').mouseout(function() {
           $(this).removeClass('overgitem');
           id = $(this).attr('name_row');
           $('#name_row_'+id).removeClass('overgitem');
       })
});



function Rozbal(NazevSeznamu){
		document.getElementById(NazevSeznamu).className='aktiv';
		AktualClassName = document.getElementById(NazevSeznamu).parentNode.className;

		if(AktualClassName == 'kapela1'){
			document.getElementById(NazevSeznamu).parentNode.className = 'kapela2';
		} else {
			document.getElementById(NazevSeznamu).parentNode.className = 'kapela3';	
		}
		
		//window.alert(document.getElementById(NazevSeznamu).parentNode.style.listStyleImage.url.src); //; = '../artwork/clip/item_on.gif';
		
}
function Zabal(NazevSeznamu){
	document.getElementById(NazevSeznamu).className='neaktiv';
	AktualClassName = document.getElementById(NazevSeznamu).parentNode.className;
	if(AktualClassName == 'kapela2'){
		document.getElementById(NazevSeznamu).parentNode.className = 'kapela1';
	} else {
		document.getElementById(NazevSeznamu).parentNode.className = 'kapela';	
	}
}
pictureOn = new Image();
pictureOn.src = '/artwork/clip/item_on.gif';
pictureOff = new Image();
pictureOff.src = '/artwork/clip/item_off.gif';
function Activate(DivId){
	picture_name = 'pic_band_'+DivId;
	div_id = 'sub_band_'+DivId;
	document.images[picture_name].src = pictureOn.src; //'./artwork/clip/item_on.gif';
	document.getElementById(div_id).className = 'aktiv';
}
function Deactivate(DivId){
	picture_name = 'pic_band_'+DivId;
	div_id = 'sub_band_'+DivId;
	document.images[picture_name].src = '/artwork/clip/item_off.gif';
	document.getElementById(div_id).className = 'neaktiv';	
}

function ShowPic(PicId, Table, ItemId)
{
	eval("window.open('/ZobrazitObrazek.php?IDObrazku="+PicId+"&table="+Table+"&IDPolozky="+ItemId+"', 'ZobrazenyObrazek', 'width=100,height=100,resizable=1')");
}
