/*
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 * jQuery Search Manipulator
 * Version 1.0 - 14122009
 * by Pawel Strzyzewski
 * by AIXhibit // www.aixhibit.com // www.internetagentur.ag
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

/***  --- Constants  --- ***/
predefined_text = "Suche";

/***  --- Core Script  --- ***/
$(document).ready(function(){
	$("#head #search, #rechtespalte #search").attr("value", predefined_text);
	$("#head #search, #rechtespalte #search").focus(function () {
         if ($(this).attr("value") == predefined_text) $(this).attr("value", "");
    });
	$("a img").each(function(){ $(this).parent().addClass("bildlink"); });
	$("#head #search, #rechtespalte #search").blur(function () {
		 if ($(this).attr("value") == "") $(this).attr("value", predefined_text);
    });
});