$(document).ready(function(){
    $('a.ventanaNueva').click(function(){
        window.open($(this).attr('href'), '_blank');
        return false;
    });

    var val;
    $('input[name=email], input[name=emailRepetido], input[name=clave], input[name=claveRepetida], #codigo').focus(function(){
        val = $(this).val();
        $(this).val('');
    });
    $('input[name=email], input[name=emailRepetido], input[name=clave], input[name=claveRepetida], #codigo').blur(function(){
        if($(this).val() == '')
            $(this).val(val);
    });
    
    /*** jQuery.lavalamp ***/
    $(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});
    
    $('#ranking div.tabla').scrollTo('tr.activo');

    /*** Enlace colorbox ***/
    	/* Enlaces productos */
	    $('a[rel="colorbox"]').colorbox();
	    $('#productos table tr td.peso a').click(function(){
    		$(this).parent().parent().children('td:first').children('a').click();
    		
    		return false;
    	});
		    
		    //Hover del gramaje y del producto
		    $('#productos table tr td.nombre a, #productos table tr td.peso a').mouseover(function(){
		    	if($(this).parent().attr('class') == 'nombre')
		    	{
		    		var clase = 'peso';
		    	}
		    	else
		    	{
		    		var clase = 'nombre';
		    	}
		    	
		    	$(this).parent().parent().children('td.' + clase).children('a').addClass('ON');
	    	});
		    
		    $('#productos table tr td.nombre a, #productos table tr td.peso a').mouseout(function(){
		    	if($(this).parent().attr('class') == 'nombre')
		    	{
		    		var clase = 'peso';
		    	}
		    	else
		    	{
		    		var clase = 'nombre';
		    	}
		    	
		    	$(this).parent().parent().children('td.' + clase).children('a').removeClass('ON');
	    	});
	    
        /* Terminos y condiciones */
        /* Bases de la promocion */
        /* Condiciones de uso */
        /* Condiciones de canje */
        /* informacion comercial*/
        $('a.basesDeLaPromocion').colorbox({width: "600", height: "600", iframe: true});
        /* Contacto */
        $('ul#terminos a.contacto').colorbox({width: "655", height: "502", iframe: true});
        /* Premios */
        $('a.viaje').colorbox({width: "444", height: "500", iframe: true, title: '1 Viaje a Sudafrica'});
        $('a.balon').colorbox({width: "444", height: "446", iframe: true, title: '1.000 Balones'});
        $('a.polo').colorbox({width: "444", height: "500", iframe: true, title: '1.000 Polos'});
        $('a.lcd').colorbox({width: "444", height: "417", iframe: true, title: '1 Televisor LCD'});
        $('a.fiesta').colorbox({width: "444", height: "500", iframe: true, title: 'Fiesta 12 amigos'});
        $('a.pyrex, #pyrex #productos a.verMas, #peticionPyrex #peticion a.verMas').colorbox({width: "444", height: "461", iframe: true, title: 'Productos PYREX'});
        $('a.verTapa').colorbox({width: "444", height: "450", iframe: true});
});
