/*OPEN ADMIN LINKS IN DIALOG*/
$(function() {
		$('a.jdl').click(function(e) {
			e.preventDefault();
			var $this = $(this);
			var horizontalPadding = 30;
			var verticalPadding = 30;
	        $('<iframe id="externalSite" class="externalSite" frameborder="0" style="padding-top:20px;" src="' + this.href + '" />').dialog({
	            title: ($this.attr('title')) ? $this.attr('title') : 'AutoMarket.ba',
	            autoOpen: true,
	            width: 900,
	            height: 480,
				zIndex: 10000000,
	            modal: true,
	            resizable: true,
				autoResize: true,
				position:[28,0],
	            overlay: {
	            opacity: 0.5,
	            background: "black"
	            }
	        }).width(900 - horizontalPadding).height(480 - verticalPadding);	        
		});
	});


$(function() {
		$('a.jdl_close').click(function(e) {
			e.preventDefault();
			var $this = $(this);
			var horizontalPadding = 30;
			var verticalPadding = 30;
	        $('<iframe id="externalSite" class="externalSite" frameborder="0" style="padding-top:20px;" src="' + this.href + '" />').dialog({
	            title: ($this.attr('title')) ? $this.attr('title') : 'AutoMarket.ba',
	            autoOpen: true,
	            width: 900,
	            height: 440,
				zIndex: 10000000,
	            modal: true,
	            resizable: true,
				autoResize: true,
				position:[28,0],
	            overlay: {
	            opacity: 0.5,
	            background: "black"
	            },
				buttons: {
				"Zatvori prozor": function() {
					$( this ).dialog( "close" );
				}
				}
	        }).width(900 - horizontalPadding).height(440 - verticalPadding);	        
		});
	});

$(function(){			
			$('input.dugme').button();
			$('.dugme').button();		
		});
