(function($){
	Core={
		next:$('#pagination a.btn-next'),
		prev:$('#pagination a.btn-prev'),
		pagination:$('#pagination a'),
		slides:$('#slides img'),
		cont:$('#cont div'),
		win:$(window),

		nav:function(e){e.data.self.stop(true,false).animate({'textIndent':e.type==='mouseenter'?5:0},100)},
		resize:function(e){
			if(e.type==='load')$('#canvas').css('backgroundImage','none');
			var db=document.body,i=Core.slides[Core.index||0],h=db.clientHeight-140,nw=Math.round(h*(i.offsetWidth/i.offsetHeight));
			if(i.style.width!=(nw=(i.offsetWidth>i.offsetHeight&&db.clientWidth>nw)?'50%':nw+'px'))i.style.width=nw
		},
		swap:function(e,i){
			if((i=e.type==='click'?39:e.keyCode)<37||i>40)return;
			window.location.hash=(i=((Core.index||0)+(i>38?1:-1))%Core.slides.length)<0?Core.slides.length:i+1;
		},
		change:function(to){
			if((to=parseInt(window.location.hash.split('#').pop()||1)-1)===Core.index)return;
			Core.pagination.removeClass('cur').eq(Core.index=to).addClass('cur');
			Core.resize(Core.slides.addClass('hide').eq(to).removeClass('hide'));	//.css('opacity',0.9).animate({opacity:1},300)
			Core.cont.addClass('hide').eq(to).css('color','#fff').removeClass('hide').animate({color:'#aaa391'});	//from:e9dfc7
			Core.next.attr('href','#'+(((to+1)%Core.slides.length)+1));
			Core.prev.attr('href','#'+(to<1?Core.slides.length:to));
		}
	}

	Core.win.bind({'resize load':Core.resize,'hashchange':Core.change}).trigger('hashchange');
	$(document).bind('keydown',Core.swap).find('#slides').bind('click',Core.swap);
	$('#head li a').each(function(e){(e=$(this)).bind('mouseenter mouseleave',{self:e},Core.nav)});
	$('a,img').removeAttr('title');
})(jQuery);

//SAVNER BILEDE FRA SPISESTUE MED MERE LYS
