$(document).ready( 
	function(){ 
		$('#imagery').innerfade({  
		speed: 1000, 
		timeout: 4000, 
		type: 'random',
		containerheight: '240px'
		 });
		
	$('#toggle-zanimljivosti').hide()
	$('#vise-zanimljivosti').click(function(e){
		$('#toggle-zanimljivosti').toggle(350);
		e.preventDefault();
	});
} ); 



