var isMSIE = /*@cc_on!@*/false;
var IE6=(navigator.userAgent.toLowerCase().indexOf('msie 6') != -1)
var IE7=(navigator.userAgent.toLowerCase().indexOf('msie 7') != -1)


$(function(){   
   $("#harta li").hover(function(){  
       // $(".detalii").show("fast");
		$('.detalii', this).css('display', 'block'); 
    },
	function(){    
        $('.detalii', this).hide("fast"); 
    });
    
});

$(function(){   
   $("#harta .img img").hover(function(){  
       // $(".detalii").show("fast");
		$('.detalii', this).css('display', 'block'); 
    },
	function(){    
        $('.detalii', this).hide("fast"); 
    });
    
});

$(document).ready(function() {			
 
	 
			 $("a.thickbox").fancybox({
				'scrolling'		: 'no',
				'titleShow'		: false,
				'onClosed'		: function() {
					$("#login_error").hide();
				}
			 });	
			 		 
			 $('a.iframe').each(function(){
				  var dWidth  = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));
				   var dHeight = parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));
				   
				   $(this).fancybox({
						'width'			    : dWidth,
						'height'            : dHeight,
						'autoScale'     	: false,
						'titleShow'		    : false,
						'transitionIn'		: 'elastic',
						'transitionOut'		: 'elastic',
						'type'			    : 'iframe'
					});
	          });		 
});
 
