$(document).ready(function(){
	$(".button").fadeTo("slow", 0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$(".button").hover(function(){
		$(this).fadeTo("slow", 0.8); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("slow", 0); // This should set the opacity back to 60% on mouseout
	});
});

function buscador(elem, hintText)
    {         
        if (elem.value == '')   
        {               
                elem.value = hintText;
        }

        elem.onblur = function ()
        {
                if (elem.value == '')
                {
                        elem.value = hintText;
                }
        }     
        elem.onfocus = function ()
        {                       
                if (elem.value == hintText)                     
                {
                        elem.value = '';
                }
        }		                  
    };
	
function buscador2(elem, hintText) {
		if (elem.value == hintText)                     
                {
                        elem.value = '';
                }
};

function comocomprar() {
	$(".comocomprar").css("display", "block");
	$(".comocomprar").css("z-index", 700);
	$(".TB_overlay_").css("display", "block");	
	$(".TB_overlay_").css("z-index", 600);
};

function comocomprarclose() {
	$(".comocomprar").css("display", "none");
	$(".comocomprar").css("z-index", -10);
	$(".TB_overlay_").css("display", "none");
	$(".TB_overlay_").css("z-index", -10);
};
