// JavaScript Document

$(document).ready(function(){		
	// nastav LIcka vo footeri
	formatujFooterLI(".footer_nav");
	formatujFooterLI(".footer_products");
	$('.unselectable').each(function() {
		this.onmousedown = this.onselectstart = function(){return false;}
	});
});

function formatujFooterLI(divko) {	
  $(''+divko+' li').each(function(idx) {	 
	 if ( idx < 4 ) {
	   $(this).attr("style", "top: "+ 19*idx +"px");
	 }
	 if ( idx >= 4 ) {
	   $(this).attr("style", "left: 120px; top: "+ 19*(idx-4) +"px");
	 }
  });   
}
