$(document).ready(function() {
	$('#keywords').smartSuggest({
		src: 'http://www.funusualart.com/assets/php/search_multiple.php',
		 
		fillBox: true,
		fillBoxWith: 'fill_text',
		executeCode: true
	});
	
	 
	
	$('.show').click(function(){
		if ($(this).html() == 'Show code')
		{
			$('pre.'+$(this).attr('class').split(' ').slice(-1)).show();
			$(this).html('Hide code');
		} else {
			$('pre.'+$(this).attr('class').split(' ').slice(-1)).hide();
			$(this).html('Show code');
		}
		$(this).blur();
	});
});
