$(document).ready(function() {
	$('.orange-btn, .green-btn').bind("mouseenter",function(){
		$(this).addClass('active-btn')
	}).bind("mouseleave",function(){
		$(this).removeClass('active-btn')
	});
	
	$("#search-string").toggleVal();
	$("#subscribe_email").toggleVal();
});
