$(document).ready(function(){
	$.ajax({
		url: 'index.php',
		data: 'action=getImagemHome&module=modal',
		success : function(res){
            if ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 7){
                if (res != 0){
                    window.open('index.php?action=popup&amp;src='+res, '', 'width=597, height=447');
                }
            } else {
				if (res != 0){
					 $.fn.nyroModalManual({
						content: '<a href="#"><img id="closeModal" src="imagem.php?tam=g&amp;src=/'+res+'" border=0 /></a>',
						width : 610,
						height: 460 // imagem ideal devem ter 600X450
					});
				}
                $('#closeModal').click(function(){				
                    $.nyroModalRemove();
                });
            }
		}
	});


	$('#jsLink').mouseover(function(){
		$(this).css({'text-decoration':'underline', 'color': '#002C45', 'cursor':'pointer'});
	});
	$('#jsLink').mouseout(function(){
		$(this).css({'text-decoration':'none', 'color': '#004B79'});
	});
	$('#jsLink').click(function(){
		window.location = $('.linkChamada').attr('href');
	});
});
