/*function loadGoogleSearch(){
	
 	google.load('search', '1', {language : 'en'});
    google.setOnLoadCallback(function() {
									  
		var customSearchControl = new google.search.CustomSearchControl('007878046405926556737:y4old0vq7fi');
	    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
    	customSearchControl.draw('cse');
	   }, true);
	
}


$(function(){
   // see if we have a cse id, then load the google search
   if ($('#cse').length) {
		loadGoogleSearch();
   }
 });

*/
google.load('search', '1', {language : 'en'});
  google.setOnLoadCallback(function() {
    var customSearchControl = new google.search.CustomSearchControl('007878046405926556737:y4old0vq7fi');
    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
    customSearchControl.draw('cse');
	$('.gsc-search-box').css('width', '95%');
  }, true);


