$(document).ready(
	function() {
	    $('ul#rotator').innerfade({ speed: 1000, timeout: 5000, type: 'random', containerheight: '160px' });
	    $('ul#sponzorji1').innerfade({ speed: 1000, timeout: 5000, type: 'random', containerheight: '100px' });
	    $('ul#partnerji').innerfade({ speed: 1000, timeout: 5000, type: 'random', containerheight: '100px' });	
	    $('ul#partnerji1').innerfade({ speed: 1000, timeout: 5000, type: 'random', containerheight: '100px' });
	    $(".predmeti").hide();
	    $(".naslovi").click(function(){ $(".predmeti").hide(); $(this).next(".predmeti").slideToggle(600); });
	    $(".predmeti1").hide();
	    $(".naslovi1").click(function()	{ $(this).next(".predmeti1").slideToggle(600); });
	    $('a[@rel*=lightbox]').lightBox();
    }
);

function ShowContent(id) {
	var e = document.getElementById(id);
	if  (e.style.display  == 'none') {
		e.style.display = 'block';
	}
	else if (e.style.display  == 'block') {
		e.style.display = 'none';
	}
}
