/***************************/
//@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 = $("#searchquery");
 var searchBoxDefault = "search...";

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

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






