/*
$(document).ready(function(){
    
    $(".detalhe").click(function () {
        $(this).next("div").toggle("normal");
    });
    
});

ajax_detalhe_produto.asp?ObjectId=e4c8f398-c3df-420a-9058-b51196ca3c3e#dialog1
*/

function selectImg(img, imgM){
	document.getElementById(img).src='img/ajax-loader.gif';
	document.getElementById(img).src=imgM;
	//document.getElementById(img_lightbox).src=imgG;
}


$(document).ready(function() {

		$('a[name=modal]').click(function(e) {
		
		
			e.preventDefault();
			
			var id = $(this).attr('href');
			
		
			var maskHeight = $(document).height();
			var maskWidth = $(window).width();
		
			$('#mask').css({'width':maskWidth,'height':maskHeight});

			$('#mask').fadeIn(200);	
			$('#mask').fadeTo("slow",0.8);	
		
			//Get the window height and width
			var winH = $(window).height();
			var winW = $(window).width();
				  
			$(id).css('top',  '200px');
			$(id).css('left', winW/2-$(id).width()/2);
			
			//$('#box-img').css('height', winH-130);
			
			//$('#box-img').css('height', (winH-0));
		
			$(id).fadeIn(400); 
			});
		
		
		$('.close, #fechar').click(function (e) {
			e.preventDefault();
			
			$('#mask').hide();
			$('.window').hide();
			if($.browser.msie && $.browser.version <= 6)
				$("select").show();
		});
		
		/*
		$('#mask').click(function () {
			$(this).hide();
			$('.window').hide();
			if($.browser.msie && $.browser.version <= 6)
				$("select").show();
		});
		*/
});

function close(){
	$('#mask').hide();
	$('.window').hide();
	if($.browser.msie && $.browser.version <= 6)
		$("select").show();
}
	
	/*
	$("#dialog1").html('Enviando!...');
	 $("#dialog1").fadeIn("slow");
	//$('#contato').css('opacity', .60);
	
	$("#dialog1").ajaxStart(function(){
		//$(this).fadeIn("slow");
	});
	
	$("#dialog1").ajaxStop(function(){
		//$(this).fadeOut("slow");
		//$(".alvo").show();
	});*/

	
function ajax_load_detalhes(id, ObjectId) {
	
	if($.browser.msie && $.browser.version <= 6)
		$("select").hide();
	
	$(".window").ajaxStart(function(){
		//$(this).fadeIn("slow");
		$(".window").html('<img src="img/ajax-loader.gif" id="status" style="margin: 150px 150px 150px 270px;" border="0" />');
	});
	
	/*$(".window").ajaxError(function(){
		$(".window").html('<span id="status" style="margin: 150px 150px 150px 270px;" border="0"></span>');
		//$(this).fadeOut("slow");
		//$(".window").show();
		//$(".window").html('');
	});*/
	
	$('.window').load('../ajax_detalhe_produto.asp?ObjectId=' + ObjectId + "&nocache="+ Math.floor(Math.random()*1000));
	
}

function validaLista(form){
	//var valores = "";
	//VALIDA OPÇÕES SOLUÇÕES
	var n = $(".iradio:checked").length;
	if(n == 0){
	  alert("Por favor, selecione algum produto da lista.");
	  //$('#iradio1').focus();
	  return(false);
	}else
		document.lista_produtos.submit();
}

function submit_form(){
	$('#produtos_classificador').disabled = true;
	$('#produtos_preco').disabled = true;
	$('#produtos_categoras').disabled = true;
	document.filtro.submit();
}

$(document).ready(function() {
	
	$('table#tabela-lista tbody tr input[type=checkbox]:checked').each(function(){
		$(this).parent().parent().css("background-color","#efe7bd");
	});
	
	$('table#tabela-lista tbody tr input[type=checkbox]:not(:checked)').click(function(){
		//alert($(this).parent().parent().css("background-color"));
		if($(this).parent().parent().css("background-color") == 'rgb(239, 231, 189)' || $(this).parent().parent().css("background-color") == "#efe7bd")
			$(this).parent().parent().css("background-color","#fffbf7");
		else
			$(this).parent().parent().css("background-color","#efe7bd");
	});
	
});


