/* CLEAR SEARCH BOX */

jQuery(function(){
	jQuery('form.search-form input').focus(function(){
		if(jQuery(this).attr('value') == 'search Osborne Books') {
			jQuery(this).attr('value', '');
		}
	});
});


// new window
jQuery(function() {
	jQuery('a.new-window').click(function() {
		jQuery(this).attr('target', '_blank');
		return true;
	});
});
