var newsstand = {
	ajax_prep: function (x) {
        var str = x;
        str = str.replace(/#/gi, "%23");
        str = str.replace(/\+/gi, "%2B");
        str = str.replace(/\n/gi, "-BREAK-");
        str = escape(str);
        return str;
    }	
};
$(function () {
	$("#search_box").focus(function () {
		if($(this).val() === 'find magazines to read on your tablet:') {$(this).val('');}	
	}).blur(function () {
		if(!$(this).val()) {$(this).val('find magazines to read on your tablet:');}
	});	
});
