$(document).ready(function(){
	var $list = $('#slide_img');
	$('li',$list).hide().eq(1).show();

	$("#left").click(function() {
		$('li:visible',$list).
        hide().
        prev('li').
          fadeIn();

      if ($('li:visible',$list).length < 1) {
        $('li:last',$list).fadeIn();
      }
    });
	$("#right").click(function() {
		$('li:visible',$list).
        hide().
        next('li').
          fadeIn();

      if ($('li:visible',$list).length < 1) {
        $('li:first',$list).fadeIn();
      }
    });
	$('li',$list).hide().eq(1).show();
  });
Shadowbox.init({});
if (document.documentElement && typeof document.documentElement.style.maxHeight == "undefined") alert("Da bi sadrÅ¾aj web stranice bio korektno prikazan potrebno je instalirati Internet Explorer 7+,\nMozilla Firefox 1.5+ ili neki treÄ‡i savremeniji web preglednik");
