
jQuery(document).ready(function()
{
    $('#tabs').tabs();
    $('#tabs_productos').tabs();
    $('#noticia').pager('div');
    $('#noticias_destacadas').pager('div');
    $('#listado_noticias').pager('div');
    $('#lista_empresas_ultimas').pager('div');
    $('#lista_empresas_destacadas').pager('div');
    $('#productos').pager('div');
    $('#productos_destacados').pager('div');
    $('#login_header').click(function(){
        $("#login_pop").toggle();
    });
    
  	 $(".contimage").hover(function() {
			$(this).animate({
				opacity:1
			},200);
		}, function() {
			$(this).animate({
				opacity:0.8
			},200);
		});
 

	$('#submitform').ajaxForm({
		target: '#todo_form',
		success: function() {
		$('#todo_form').fadeIn('slow');
		}
	});
		
	$("input[class=checkall]").live("click", function (event) {
		
        var checked = $(this).attr("checked");

        $("input[type=checkbox]").each(function () {
        	alert(this);
            this.checked = checked;

            if (checked) {
                set_tr_class($(this).parent().parent(), true);
            } else {
                set_tr_class($(this).parent().parent(), false);
            }
        });
    });



});

function showLightbox() {
    document.getElementById('over').style.display='block';
    document.getElementById('fade').style.display='block';
    //setTimeout("hideLightbox()", 5000);
}

function hideLightbox() {
    document.getElementById('over').style.display='none';
    document.getElementById('fade').style.display='none';
}

function set_form_empresas(objeto) {


	if(objeto=="seguir"){
		document.action_multiple.action="/seguir/";
	}else{
		document.action_multiple.action="/contactar/";
	}
	document.action_multiple.submit();

}
function select_provincia(){
	document.location.href=$('#cambia_provincia').val();
}







