/* Functions for mixed content theme */
$(document).ready(function() {
	
	//make the search box clear out when clicked
	$('#s').click(function() {
	   $('#s').val('');
	});
	
	
});