$(document).ready(function(){
	/* JS  za bannerje */
	$('.banner .items div').cycle({prev : 'a.prevPage', next : 'a.nextPage', speed: 1000, timeout: 7000})
	$('div.items img').each(function(){
		$(this).click(function(){
			var id = $(this).attr('rel');
			$("#"+id).overlay({
				expose: { 
			        color: '#fff', 
			        loadSpeed: 500, 
			        opacity: 0.8 
			    },
				effect: 'apple', 
				api: true
			}).load();
			
		})
	});
	/* Konec JS za bannerje */
});