(function( $ ) {
	$.widget( "ui.combobox", {
		_create: function() {
			var self = this,
				select = this.element.hide(),
				selected = select.children( ":selected" ),
				value = selected.val() ? selected.text() : "";
			var input = this.input = $( "<input>" )
				.insertAfter( select )
				.val( value )
				.autocomplete({
					delay: 0,
					minLength: 0,
					source: function( request, response ) {
						var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
						response( select.children( "option" ).map(function() {
							var text = $( this ).text();
							if ( this.value && ( !request.term || matcher.test(text) ) )
								return {
									label: text.replace(
										new RegExp(
											"(?![^&;]+;)(?!<[^<>]*)(" +
											$.ui.autocomplete.escapeRegex(request.term) +
											")(?![^<>]*>)(?![^&;]+;)", "gi"
										), "<strong>$1</strong>" ),
									value: text,
									option: this
								};
						}) );
					},
					select: function( event, ui ) {
						ui.item.option.selected = true;
						self._trigger( "selected", event, {
							item: ui.item.option
						});
					    select.trigger("change");
					},
					change: function( event, ui ) {
						if ( !ui.item ) {
							var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
								valid = false;
							select.children( "option" ).each(function() {
								if ( $( this ).text().match( matcher ) ) {
									this.selected = valid = true;
									return false;
								}
							});
							if ( !valid ) {
								// remove invalid value, as it didn't match anything
								$( this ).val( "" );
								select.val( "" );
								input.data( "autocomplete" ).term = "";
								return false;
							}
						}
					}
				})
				.addClass( "ui-widget ui-widget-content ui-corner-left" );

			input.data( "autocomplete" )._renderItem = function( ul, item ) {
				return $( "<li></li>" )
					.data( "item.autocomplete", item )
					.append( "<a>" + item.label + "</a>" )
					.appendTo( ul );
			};

			this.button = $( "<button type='button'>&nbsp;</button>" )
				.attr( "tabIndex", -1 )
				.attr( "title", "Show All Items" )
				.insertAfter( input )
				.button({
					icons: {
						primary: "ui-icon-triangle-1-s"
					},
					text: false
				})
				.removeClass( "ui-corner-all" )
				.addClass( "ui-corner-right ui-button-icon" )
				.click(function() {
					// close if already visible
					if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
						input.autocomplete( "close" );
						return;
					}

					// work around a bug (likely same cause as #5265)
					$( this ).blur();

					// pass empty string as value to search for, displaying all results
					input.autocomplete( "search", "" );
					input.focus();
				});
			this.button.css("height","10px");
			this.button.css("width","10px");
			this.button.css("margin-right","50px"); 
		},

		destroy: function() {
			this.input.remove();
			this.button.remove();
			this.element.show();
			$.Widget.prototype.destroy.call( this );
		}
	});
})( jQuery );

$(function(){ 
	
	_initGlobal();
	
	function data_received(object)
	{
		$('#dialog_help').dialog("close");
	}
	
	//$('#domain-dropdown').sSelect();
	
	$( "#domain-dropdown" ).combobox();
	$( "#toggle" ).click(function() {
		$( "#domain-dropdown" ).toggle();
	});
	
	$( ".ui-autocomplete-input" ).autocomplete({
	   close: function(event, ui) {  
		   var validate = false;
		   if(!ui.item){
			   var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
				valid = false;
				$("#domain-dropdown").children( "option" ).each(function() {
					if ( $( this ).text().match( matcher ) ) {
						this.selected = valid = true;
						validate = true;
						return false;
					}
				});
		   }
		   if(validate){
			   if($("#domain-dropdown").val().length > 0){
				   var id = $("#domain-dropdown").val();
				   var href = window.location.href;
				   if(href.indexOf("?") != -1){ 
					   href = href.substring(0,(href.lastIndexOf("/")+1)) + "ranking.html";
				   }
				   window.location.href = href + "?id=" + id; 
			   }
		   }
	   }
	});
	
});

	function _initGlobal()
	{
		$("#tabs").tabs('destroy');
		if(document.getElementById("tabs")){
			$("#tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
		}
		
		$(".tabs").tabs();
		
		//$('#dialog_help').remove();
		//$("[title]").remove();
		// Konkurrenten hinzufügen		
		$('#dialog_help').dialog({
			autoOpen: false,
			width: 600,
			height: 400,
			modal: true,
			buttons: {
				"Ok": function() { 
					//alert($(this).dialog("modal"));
					jQuery.post('/SeoTools/index.html', null, data_received, 'text' );
				}, 
				"Abbrechen": function() { 
					$(this).dialog("close"); 
				} 
			}
		});
		
		// Dialog Link
		$('a.help').click(function(){
			$('#dialog_help').dialog('open');
			return false;
		});
		
		$('#domain-dropdown').change(function(){
			var loc = window.location.href;
			
			//var val = $('#domain-dropdown').getSetSSValue();
			
			var val = $('#domain-dropdown').val();
			
			if(loc.indexOf("id=")!=-1)
			{
				loc = loc.replace('id=','');
			}
			
			if(loc.indexOf("?")==-1)
			{
				window.location.href = loc + "?id=" + val;
			}
			else
			{
				window.location.href = loc + "&id=" + val;
			}
			
		});
	}


function reloadContent(callback)
{
	if(callback == null) callback = pageReloaded;
	jQuery.post(window.location.href, {ajax : "true"}, callback, 'html' );
}

function pageReloaded(object)
{
	document.getElementById("content").innerHTML=object;
	_initGlobal();
}
