// STARTUP
window.addEvent('domready', function() {
	// SEARCH
	frmSearch();
	// VARIABLES
	var ibo = new Fx.Slide('ibo',{duration:600});
	var ibc = new Fx.Slide('ibc',{duration:600});
	// INTRO SLIDE
	ibo.hide();
	// ACTIONS
	$('iac').addEvent('click',function(){
		ibo.slideOut();
		ibc.slideIn();
		return false;
	});
	$('iao').addEvent('click',function(){
		ibo.slideIn();
		ibc.slideOut();
		return false;
	});
});
// SEARCH
function frmSearch(){
	var stext = 'Para buscar escribe y presiona [ENTER]...';
	if(!document.getElementById('s').value || document.getElementById('s').value==stext){
		document.getElementById('s').value=stext;
		document.getElementById('s').onclick=function(){
			if(document.getElementById('s').value==stext){
				document.getElementById('s').value='';
				document.getElementById('s').style.color='#333';
			}
		};
		document.getElementById('s').onblur=function(){
			if(!document.getElementById('s').value){
				document.getElementById('s').value=stext;
				document.getElementById('s').style.color='#B3B3B3';
			}
		};
	}
}