/**
* Custom JS functions for black label creative
*
* @version	1.0
* @author	Jasal Vadgama - http://www.blacklabelcreative.com/
* @require	jquery
* @license	GPL v3
**/

// Search Form text effect
function searchForm(id) {
	$("#" + id).focus(function() {
		if ($(this).attr("value") === "search") {
			$(this).attr("value", "");
		}
	}).blur(function() {
		if ($(this).attr("value") === "") {
			$(this).attr("value", "search");
		}
	});
}

/**
* Load functions
**/
$(function() {
	// search box text removal
	searchForm("s");
});
