// VALORES DE INPUTS
function input_focus(o,valor){
if(o.value==valor){
o.value=""}
}
function input_blur(o,valor){
if(o.value==""){
o.value=valor}
}

// APARIENCIA DE <SELECT>
$(document).ready(function() {
	$('#select_currency').selectbox({debug: true});
	$('#select_language').selectbox({debug: true});
	$('#select_sort').selectbox({debug: true});
});

// MENU DESPLEGABLE
$(function(){
	$('.nav>li').hover(
		function(){
		$('.nivel_1',this).stop(true,true).slideDown('fast');
		$('.nivel_2',this).stop(false,false);
		$('.nivel_3',this).stop(true,true).slideDown('fast');
		},
		function(){
		$('.nivel_1',this).slideUp('fast');
		$('.nivel_3',this).slideUp('fast');
		}
	);
	$('.nivel_1 li').hover(
		function(){
		$('.nivel_2',this).stop(true,true).slideDown('fast');
		},
		function(){
		$('.nivel_2',this).slideUp('fast');
		$('.nivel_1',this).stop(false,false);
		}
	);
	$('.nivel_3 li').hover(
		function(){
		$('.nivel_2',this).stop(true,true).slideDown('fast');
		},
		function(){
		$('.nivel_2',this).slideUp('fast');
		$('.nivel_3',this).stop(false,false);
		}
	);
});
