function setUp(app) {
	switch(app){
		case "index":
		$(document).ready(function(){
			$('#showForm').click(function(){
				$('#bck_buscador').stop(true,true);
				if($('#bck_buscador').css("margin-left")=="488px") 
					$('#bck_buscador').animate({marginLeft:288},500);
				else
					$('#bck_buscador').animate({marginLeft:488},500);
			});
			$('#cssdropdown li.headlink').hover(
				function(){$('ul', this).stop(true,true);$('ul', this).slideDown(250)},
				function(){$('ul', this).stop(true,true);$('ul', this).slideUp(250)}
			);
			$('#slider').coinslider({width: 936,height: 323,spw: 7, 
					spw: 1, // squares per width
					sph: 1, // squares per height
					delay: 6000, 
					sDelay: 100, 
					opacity: 0.7, 
					titleSpeed: 500, 
					effect: 'rain', 
					navigation: true, 
					links : true, 
					hoverPause: true
				});	
			
		});
		break;
		case "portada":

		break;
	}
}

