//JQUERY Settings

jQuery(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto({
    animationSpeed: 'normal', /* fast/slow/normal */
    padding: 40, /* padding for each side of the picture */
    opacity: 0.35, /* Value betwee 0 and 1 */
    showTitle: false, /* true/false */
    allowresize: true, /* true/false */
    counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
    theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square */
    callback: function() { }
    });

    $('ol#ecardbox_thumbs li a').click(function() {
        var imeSlike = $(this).attr('href');
        $('li#big_img img').attr("src", imeSlike);
        $('#hCurrentImagePath').attr("value", imeSlike);
        return false;
    }).filter(':first').click();


    $(".main_menu li").hover(function() {
        $(this).find("ol").css({ display: 'block' });
        $(this).find("a:first").addClass("hover");
    },
      		function() {
      		    $(this).find("ol").css({ display: 'none' });
      		    $(this).find("a:first").removeClass("hover");
      		}
    	);
$(function() {
$(".novost_box").quickpaginate({ perpage: 5, pager: $("#dogadjanja_lista_counter") });

});

//slider slika home
jQuery('.head_gal').cycle({
    fx: 'fade',
    speed: 2500,
    timeout: 3000
});

});


