$(document).ready(function(){
	
	/* podesi lijevu i desnu stranu */
	var nav = $("#navigation").height();
	var rs  = $("#right-side").height();
	
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
	
	if(rs>=nav) {	
		
		if(is_chrome == true) {
			rs = rs + 238;
		}
		
		$("#navigation").height(rs + "px");
	}	
	
	/* content slider */
	/* http://jquery.malsup.com/cycle/	*/
	$('.slides').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 15000
	});
	
	$('.fancybox').fancybox({"titlePosition": "inside"});
});

