/* FB aktuality */
window.addEvent('domready', function(){
	if($('fb_likebox_content')!=null){
		$('fb_likebox_content').innerHTML = "<fb:like-box href=\"http://www.facebook.com/pages/GSM-MOBIL/193868031307\" width=\"188\" connections=\"10\" height=\"830\" stream=\"true\" header=\"false\"></fb:like-box>";
	}
});

/* FORMULARE EDITACIE KATEGORII */
function modifikacia_kategorie(form_id,input_id,input_value){
	if($(form_id)!=null){
		$(input_id).value = input_value;
		$(form_id).submit();
	}
}

/* KONTROLA FORMULARA NA PRIDAVANIE TOVARU - ADMIN */
/*
window.addEvent('domready',function() {
	$('pointer_formular_nova_karta_tovaru').addEvent('onsubmit',function(e) {
		return false
	});
});*/
	

/* ZAKLADNE JS FUNKCIE */
function input_nahradit_hodnotu(prvok,default_hodnota,hodnota){
	if(prvok!=null){
		if(prvok.value==default_hodnota){
			prvok.value=hodnota;
		}
	}
}

/* SCROLLING aktivovany odkazom */
function scrolling_link(id_prvku){
	new SmoothScroll({ duration:450 }, window); 
	var scroll = new Fx.Scroll(window, { wait: false, duration: 1000, transition: Fx.Transitions.Quad.easeInOut });
	scroll.toElement(id_prvku);
}

/* SKRYVACI FILTER */
/*
var slide;
window.addEvent('domready', function() {
	if($('filter_formular_pointer')!=null){
		var slide = new Fx.Slide('filter_formular_pointer',{
			duration: 400, 
			transition: Fx.Transitions.linear
		});
		slide.hide();
	
		$('filter_formular_ovladac_pointer').addEvent('click',function(e){
			e = new Event(e);
			slide.toggle();
			e.stop();
		})
	}		
})
*/

/* FOTOGALERIA */
function de_aktivacia(ovladaci_prvok,clen,strankovanie){
	if(ovladaci_prvok.checked==true){
		for(var i=1; i<=strankovanie; i++){
			if(document.getElementById(clen + i)!=null){
				document.getElementById(clen + i).checked = true;
			}
		}
	} else {
		for(var i=1; i<=strankovanie; i++){
			if(document.getElementById(clen + i)!=null){
				document.getElementById(clen + i).checked = false;
			}
		}
	}
}
