$(document).ready(function(){
	
	$('#sanjaMenuHolder a').hover(
			function () {
			    $(this).stop();
			    $(this).animate({color: "#808285" }, 200 );
			},
			function () {
			    $(this).stop();
			    $(this).animate({color: "#fff" }, 200 );
			});

	$('.slikice a').lightBox();
	
	$('.stranajportfolio .slikice a img').hover(
			function () {
				$(this).attr("src", $(this).attr("src").replace(/small_/, "over_small_"));
			},
			function () {
			    $(this).attr("src", $(this).attr("src").replace(/over_small_/, "small_"));
			});

		$('.mosmsgmodule').click(function(){$('.mosmsgmodule').hide()});
		//setTimeout("$('.mosmsgmodule').hide()", 3000);
	});


$(window).bind('load', function() {
    var preload = new Array();
    $(".stranajportfolio .slikice a img").each(function() {
        s = $(this).attr("src").replace(/small_/, "over_small_");
        preload.push(s)
    });
    var img = document.createElement('img');
    $(img).bind('load', function() {
        if(preload[0]) {
            this.src = preload.shift();
        }
    }).trigger('load');
});
