$(function(){ 
    $(document).pngFix(); 
    $('#projects div').hover(function(){
    	$('a', this).css('text-decoration', 'underline');
    	$('img', this).attr('src', '/bitrix/templates/casa_del_mar/images/'+$(this).attr('id')+'3.png');
    }, function(){
    	$('a', this).css('text-decoration', 'none');
    	$('img', this).attr('src', '/bitrix/templates/casa_del_mar/images/'+$(this).attr('id')+'.png');
    });
	$('a[href$=.jpg], a[href$=.jpeg], a[href$=.JPG], a[href$=.JPEG], a[href$=.png]').click(function(){
		$('body').append('<div class="lightbox"><img src="' + $(this).attr('href') + '" alt="" title="Нажмите кнопку мыши, чтобы закрыть изображение" /></div>');
		$(document).bind('click', function(){
			$('.lightbox').remove();
			$(document).unbind('click');
			});
		$('.lightbox img').load(function(){
				$('.lightbox').css({display: 'block'});
				var top = $(document).scrollTop() + ($(window).height() - $('.lightbox').height()) / 2;
				$('.lightbox').css('top', top+'px');
			});
		return false;
	});
}); 
