$(function() {
   $("a.fancy").fancybox({
        'modal'	:	false,
        'overlayShow'	:	true,
        'hideOnOverlayClick':true,
        'hideOnContentClick':true,
        'enableEscapeButton':true,
        'showCloseButton':true
    });
     
    $(".menuItem a").mouseover(function(){
        if(!$(this).hasClass('Act')){
        var url=$(this).attr('rel');
        $(this).parent('div').css({'background':url});
        }
    }).mouseout(function(){
      if(!$(this).hasClass('Act')){  
      $(this).parent('div').css({'background':''});
      }
    });
    ///////////////////////////////////////////////popup/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    $('.lightbox').click(function() {
                var zdj= new Image();
                zdj.src=($(this).attr('src'));
                var maxWidth=new Number($(window).width())-100;
                var maxHeight=new Number($(window).height())-100;
                var width=(Number(zdj.width)>maxWidth)?maxWidth:Number(zdj.width);
                var height=(Number(zdj.height)>maxHeight)?maxHeight:Number(zdj.height);
		$('body').append('<div id="popup_zdj" class="popup_block_zdj"><img height="'+height+'" src="'+$(this).attr('src')+'"/></div>');
                var popup=$('#popup_zdj');

		popup.fadeIn().css({'height':height }).prepend('<a href="#" class="close_zdj"><img style="left:'+(popup.width()-5)+'px;" src="/media_front/images/close-button.png" class="btn_close_zdj" title="Close Window" alt="Close" /></a>');
		

		var popMargTop = (popup.height() + 12) / 2;
            
		var popMargLeft = (popup.width() + 12) / 2;
		

		popup.css({ 
			'margin-top' : -popMargTop,
			'margin-left' : -popMargLeft
		});
		

		$('body').append('<div id="fade_zdj"></div>');
                
		$('#fade_zdj').css({'filter' : 'alpha(opacity=60)'}).fadeIn(); 
		
		return false;
	});
        
        $('a.close_zdj, #fade_zdj').live('click', function() { 
	  	$('#fade_zdj , .popup_block_zdj').fadeOut(function() {
			$('#fade_zdj,#popup_zdj, a.close_zdj').remove();  
         }); 
		
		return false;
	});


});

