$(function() {

	// Input hint behavior on Search box in header
	$(".search-text")
		.focus(function() {
			if ($(this).val() == "Search") {
				$(this).val("");
				$(this).css({'color':'#58595b'});
			}
		})
		.blur(function(){
			if ($(this).val() == "") {
				$(this).val("Search");
				$(this).css({'color':'#9ea0a3'});
			}
		});



		// Allow styling of select dropdowns (the category dropdown specifically)
		$("#categories-2 select").uniform(); 
});