function showCategory(category){

	var cats = new Array();
	cats[0] = 'web';
	cats[1] = 'news';
	cats[2] = 'video';
	cats[3] = 'images';
	cats[4] = 'social';
	cats[5] = 'shopping';
	
	cats.each(function(cat) {
	  
		$('container-'+cat).hide();
		
		$('tab-'+cat).removeClassName('current');
		
	});

	$('container-'+category).show();
	
	$('tab-'+category).addClassName('current');
	
	$('tab-'+category).blur();

}



function builder(term){ 
	
	 var url = 'http://www.mashemy.com/build.php';  
	 
	 $('built').innerHTML='Please be patient while your Mashup is being Created...<br><br><img src="http://www.mashemy.com/images/loader.gif">';  /* http://www.ajaxload.info */   
	   	
	 var myAjax = new Ajax.Updater( {success: 'built'}, url, { method: 'post', parameters: 'term='+term, onSuccess: redirect}); 
	 
	    
}


function redirect(response){
	
	if (response['responseText'].substring(0,7) == 'http://'){
	
		window.location = response['responseText'];
	
	}
	
}


