/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

$(document).ready(function(){
	//global vars
	var searchBoxes = $(".text");
	var gbox = $("#s");
	var gboxDefault = "Suchen...";

	
	//Effects for both searchbox
	searchBoxes.focus(function(e){
		$(this).addClass("active");
	});
	searchBoxes.blur(function(e){
		$(this).removeClass("active");
	});
	

	//gbox show/hide default text if needed
	gbox.focus(function(){
		if($(this).attr("value") == gboxDefault) $(this).attr("value", "");
	});
	gbox.blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", gboxDefault);
	});
});
