/*  Common funkcie pre portal, vyuzivaju jquery.js
/*--------------------------------------------------------------------------*/

//nic nerobi
function dummy(){

}

 $(document).ready(function(){
   //$(".common tr").mouseover(function() {$(this).addClass("rowover");}).mouseout(function(){$(this).removeClass("rowover");});
   $(".common tr:even").addClass("rowalt");

   //$(".cennik tr").mouseover(function() {$(this).addClass("rowover");}).mouseout(function(){$(this).removeClass("rowover");});
   //$(".cennik tr:even").(function(){alert('aa'))};
   $(".cennik tr").each(function(i) {
    if ((i % 2 == 0) && !($(this).hasClass('blank'))) $(this).addClass("rowalt");
   });


   $('label[title]').qtip();
   $('a[title]').qtip();
 });

//pre form s danym id vypne autocomplete
function autocomplete_off(form_id) {
	form=document.getElementById(form_id);
	form.setAttribute("autocomplete","off");
}

//pre form s danym id vypne autocomplete
function autocomplete_off(form_id) {
	form=document.getElementById(form_id);
	form.setAttribute("autocomplete","off");
}

function switch_container(arg)
{
	var div=document.getElementById(arg);
	if(div.style.display=="none")
	{
		div.style.display="block";
	}
	else
	{
		div.style.display="none";
	}
}


