//koda za animiran drop down menu
$(function() {
	$("#skupine > li > ul").not($("#skupine > li.active > ul")).hide();
	$("#skupine > li > a").click(function() {
		$(this).parent("li").toggleClass("active");
		$(this).parent("li").children("ul").animate({
				height:"toggle"
			});
	});
});
//koda za tiste novo pa to 
$(function() {
	$(".novo").prepend('<img src="img/novo2.png" width="122" height="142" onLoad="fixPNG(this)" alt="">');
	$(".novo_eng").prepend('<img src="img/novo_eng.png" width="122" height="142" onLoad="fixPNG(this)" alt="">');
	$(".akcija").prepend('<img src="img/akcija.png" width="122" height="142" onLoad="fixPNG(this)" alt="">');
	$(".popust").prepend('<img src="img/popust.png" width="122" height="142" onLoad="fixPNG(this)" alt="">');
	$(".brez").prepend('<img src="img/brez.png" width="122" height="142" onLoad="fixPNG(this)" alt="">');
});
//more se strinjat s pogoji poslovanja
$(function() {
	$("form.registerform").submit(function() {
		return false;
	});
});
function submitform(f) {
	if (f.pogoji.checked) {
		f.submit();
	} else {
		alert("Morate oznaciti, da se strinjate s pogoji!\nYou have to agree to the terms and conditions before proceeding!");
	}
}
