Shadowbox.init({
    players:    ["inline",'iframe', "html", "img", "flv", "swf", "youtube"]

});


function check_pj()
{
	if( gbyid('tip_persoana').value == 'juridica' )
	{
		gbyid('tr_pers_juridica').style.display='table-row';
		gbyid('tr_pers_juridica1').style.display='table-row';
	}
	else
	{
		gbyid('tr_pers_juridica').style.display='none';
		gbyid('tr_pers_juridica1').style.display='none';
	}
	
}


function div_load(pagina, div, id)
{

$.ajax({
  url: pagina+id,
  cache: false,
  success: function(html){
    $(div).html(html);
  } }); }


    $(function () {
        if ($.browser.msie ) return;
        
        $('#navigation li')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />').each(function () {
                    var $span = $('> span.hover', this).css('opacity', 0);
                    $(this).hover(function () {
                        // on hover
                        $span.stop().fadeTo(400, 1);
 						$(this).animate({opacity: 1, top: "10"}, {queue:false, duration:400});
                   }, function () {
                        // off hover
                        $span.stop().fadeTo(200, 0);
						$(this).animate({opacity: 1, top: "0"}, {queue:false, duration:200});
                    });
                });

    });
	
	
	
function gbyid(id)

{
	return document.getElementById(id);
}

