/***************************/
//@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 searchBox = [$("#search-oneliner"), $("#search-term"), $("#newsletter_subscribe")];
	var searchText = ["Typ hier uw trefwoord...", "Typ hier uw trefwoord...", "Typ je e-mail adres in"];
	
	for(i=0; i<searchBox.length; i++) {
		try {
			eval('searchBox[i].focus(function(){ if($(this).attr("value") == "' + searchText[i] + '") { $(this).attr("value", ""); } $(this).addClass("active"); });');
			eval('searchBox[i].blur(function(){ if($(this).attr("value") == "") { $(this).attr("value", "' + searchText[i] + '"); } $(this).removeClass("active"); });');
		} catch (e) {
		}
	}
});

