$(document).ready(function() {
			
	$(".menu ul li").last().find("a").css("border-right", "0px");
	
	$(".baneri-footer a img, .promo_banner a img").hover(
	  function () {
	    $(this).addClass("hover");
	  },
	  function () {
	    $(this).removeClass("hover");
	  });
	  
	
	ucitajKategorije();
	
	jQuery('.index-back-slika').cjFlashySlideShow({ xBlocks: 8, yBlocks: 6, minBlockSize: 30, delay: 5000, translucent: true });
	
});


$("#select_kategoriju").live("change", function() {
	
	ucitajPutovanja();
	
});

$("#select_putovanje").live("change", function() {
	if($(this).val() != "-1") {
		document.location.href = '/ser/plugin/putovanja/'+$(this).val();
	}
});


 function ucitajKategorije() {
 	
 	$.ajax({
		type: "POST",
		url: "/work.php",
		async: false,
		data: "action=loadCategories",
		success: function(msg){
			$("#select_kategoriju").html(msg);
		}
	}); // end of ajax
 	
 }
 
 function ucitajPutovanja() {
 	var id = $("#select_kategoriju").val();
 	$("#select_putovanje").html("<option>Učitavam putovanja...</option>");
 	$.ajax({
		type: "POST",
		url: "/work.php",
		async: false,
		data: "action=loadTrips&id="+id,
		success: function(msg){
			$("#select_putovanje").html(msg);
		}
	}); // end of ajax
 	
 }
 
