$(function() {
	$("input").focus(function() {
		if($(this).val() == $(this).attr("title")) $(this).val("");
		$(this).unbind("blur").blur(function() {
			if($(this).val() == "") $(this).val($(this).attr("title"));						
		});
	});
	
	$(".btMaisLinks").click(function(e) {
		e.preventDefault();
		$("#divLinks .load").show();
		var lastQtde = parseInt($('input#qtdeLinks').val());
		var qtde = lastQtde * 2;
		$.post($('input#templateRoot').val() + '/service/ajaxActions.php',
			{
				action: "moreLinks",
				qtdeLinks: qtde
				
			},
			function(ret) {
				$("#divLinks ul").html(ret);
				
				if($("#divLinks ul li").length > lastQtde) 
					$('input#qtdeLinks').val(qtde);
					
				$("#divLinks .load").hide();
			}
		);
	 });
	
	/*$('#divPlaylist').flash(
        { 
          src: $('input#templateRoot').val() + '/swf/bettys.swf',
          width: 231,
          height: 308,
		  wmode: "transparent",
          flashvars: { username: 'thebettygirls' }
        },
        { version: 9 }
    );*/
	
	$('#divPublicidadeLateralBanners ul li#trashchic').flash(
        { 
          src: $('input#templateRoot').val() + '/swf/trashchic_lojavirtual.swf',
          width: 120,
          height: 60,
		  wmode: "transparent"
        },
        { version: 9 }
    );
	
	$("ul.lstGaleria").jcarousel();
	
	$("#divRodape li").hover(
		function() {
			$(".sub",this).show();
		},
		function() {
			$(".sub",this).hide();
		}
	)
	
	$("#divRodape li:eq(3) a").click(function(e) { e.preventDefault(); });
	
	DD_belatedPNG.fix('#divSidebar h2.titulo');

});