jQuery.noConflict();
jQuery(document).ready(
	function ($)
	{	
		$("#content-left-suche").append('<div class="preloader"><img src="fileadmin/ext/tt_products/img/loader.gif" class="search_loader" alt="suche" /></div>');
		
		$('.suchen-box input[type="submit"]').click(
			function ()
			{
				var value = $(this).parent().children('.sword').val();
				
				if (value != "Artikel durchsuchen" && value != "Webseite durchsuchen") {
					$(this).parent().append('<img src="fileadmin/ext/tt_products/img/loader.gif" class="search_loader" alt="suche" />');
					$(this).fadeOut(0);
				
				}
				else
				{
					$(this).parent().children('.sword').addClass("search_required");
					return false;
					
				}
			
			}
		
		);
		
		// switch Form-Values to empty or default
		$('.suchen-box input[type!="submit"]').live("focus",
			function () 
			{
				$(this).removeClass("search_required");
				
				if ($(this).val()) {
					/*if (!$(this).attr("rel")) {
						$(this).attr("rel", $(this).val());
					}*/
					
					if ($(this).val() === $(this).attr("rel")) {
						$(this).val("");
					}

				}
				
			}
			
		);

		$('.suchen-box input[type!="submit"]').live("blur",
			function () 
			{
				if (!$(this).val()) {
					$(this).val($(this).attr("rel"));

				}

			}
			
		);
	
	}
	
);
