function start_search_box(){
	// Create a custom search control that uses a CSE restricted to code.google.com
	var customSearchControl = new google.search.CustomSearchControl('012157912978810372049:-cv6ao3zqua');
	
	// Add in a WebSearch
	var webSearch = new google.search.WebSearch();
	
	// Restrict our search to pages from the Cartoon Newtowrk
	webSearch.setSiteRestriction('www.lacomarcanoticias.es');
	
	// Add the searcher to the SearchControl
	customSearchControl.addSearcher(webSearch);
	
	// Draw the control in content div
	customSearchControl.draw('main');
}