$(document).ready(function(){
	$(".autoErase").click(function(){
		if(!$(this).hasClass("filled"))
		{
			$(this).attr("value", "");
			$(this).addClass("filled");
		}
	});
	
	var bridge = new ctRotatorBridgeFeatImages('/script/php/featImages.php?dir=../../slike/glavne/', function(featImages){
		$('#featImg').ctRotator(featImages, {
			showCount: 1,
			speed: 5000,
			fadeEffect: true,
			fadeInSpeed: 400,
			fadeOutSpeed: 600,
			shuffle: true,
			itemRenderer: function(item){
				$('#featImg').css('background-image', 'url(' + item.src + ')');
				return '<img src="' + item.src + '" alt="slikica" />';
			}
		});
	});
	
	bridge.getDataSource();
	
	$("#dialog").dialog({
		bgiframe: true,
		resizable: false,
		height: 140,
		modal: true,
		autoOpen: false,
		overlay: {
			backgroundColor: '#000',
			opacity: 0.5
		},
		buttons: {
			'Da, izbriši izbrano': function(){
				$(this).dialog('close');
				var deleteUrl = $(this).attr("rel");
				window.location = deleteUrl;
			},
			'Prekliči': function(){
				$(this).dialog('close');
				$(this).attr("rel", "");
			}
		}
	});
	
	$(".confirmDelete").click(function(){
		$("#dialog").attr("rel", $(this).attr("href")).dialog("open");
		return false;
	});
});
