var message="www.lisava.ru";
function click(e) {
   if (document.all) {    // IE
	  if (event.button == 2) {    // Чтобы отключить левую кнопку поставьте цифру 1
		  alert(message);    // чтобы отключить среднюю кнопку поставьте цифру 1
		  return false;}
	  }
   if (document.layers) { // NC
	  if (e.which == 3) {
		  alert(message);
		  return false;}
	  }
}
if (document.layers) 
   {document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;
document.oncontextmenu=function(e){return false};

$(document).ready(function(){

	var currentPadding = 0;
	currentPadding = $(window).width() - 1000;
	if ( currentPadding < 0 ) currentPadding = '0px';
	if ( currentPadding > 35 ) currentPadding = '35px';

	$('#wrap').css({'padding-left':currentPadding});
	$('div.color-line').css({'padding-left':currentPadding});

	$('a.fancybox').fancybox({
		'overlayOpacity'	:	0.7,
		'overlayColor'		:	'#000'
	});

	$('a.sm-photo').each(function (i) {
		$(this).click(function () {
			var imgPreview = $(this).attr( 'href' );
			imgPreview = 'url('+imgPreview+')';
			$('div.good-photo').css( 'background-image', imgPreview );
			return false;
		});
	});

});
