$(document).ready(function() {
	//Najave događanja
	$('div.najave-dogadanja').load('najave-dogadanja/');
});

$(document).ready(function() {
 
	/*Rollover*/
	$("#menu img").each(function() {
		rollsrc = $(this).attr("src");
		rollON = rollsrc.replace(/.jpg$/ig,"-hover.jpg");
		$("<img>").attr("src", rollON);
	});

	$("#menu a").mouseover(function(){
		imgsrc = $(this).children("img").attr("src");
		matches = imgsrc.match(/-hover/);
		if (!matches) {
		imgsrcON = imgsrc.replace(/.jpg$/ig,"-hover.jpg");
		$(this).children("img").attr("src", imgsrcON);
		}
	});
	$("#menu a").mouseout(function(){
		$(this).children("img").attr("src", imgsrc);
	});
	/*Rollover*/
});

$(document).ready(function() {
	/*Rounded corners*/
	$("div.box-content ul li a").corner("3px");
	$("div.box-content-vazni-propisi ul li a").corner("3px");
	$("input.input").corner("3px");
	$("input.submit").corner("3px");
	/*Rounded corners*/ 
});
