/***************************/
//@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 = $("input");
	var textAreas = $("textarea");


	
	//Add highlighting to form elements on focus
	searchBoxes.focus(function(e){
		$(this).addClass("focused");
	});
	searchBoxes.blur(function(e){
		$(this).removeClass("focused");
	});
	
	textAreas.focus(function(e){
		$(this).addClass("focused");
	});
	textAreas.blur(function(e){
		$(this).removeClass("focused");
	});

	
});