/* Search Form */
$(document).ready(function(){
	$('#searchfotos').click(function(){
		var name = $(this).attr('name');
		var newName = '';
		var newAction = '';
		var newMethod = '';
		switch (name){
			case 'searchfotos':
				newName = 'words';
				newAction = '/fotos/index.php?p=search';
				newMethod = 'POST';
				break;
			//case 'searchsubmit':
				//newName = 's';
				//newAction = 'http://mirumbita2.dyndns.org:8888/?s=';
				//newMethod = 'GET';
				//$(inalbums).remove();
		}
		$('#search').attr('name', newName);
		$('#searchform').attr('action', newAction).attr('method', newMethod).submit();
		return false;
	})
})
/* // Search Form */
