$(document).ready(
	function(){
		$('a').css('text-decoration', 'underline');
		$("#risunok > img").css('backgroundColor','fff');
		$('a').hover(
			function(){
				$(this).css('text-decoration', 'none');
			},
			function(){
				$(this).css('text-decoration', 'underline');
			}
		);	
	}
);

$(document).shortkeys({
  'Esc':       function () { $('#photo_div').hide("slow"); }
});

function load_img(filename, comment) {
	$('#img_loading').show()
	$('#photo_div').load('big_photo.php',
		{file: filename,
		 comment: comment},
		function() {
			$('#img_loading').hide();
			$('#photo_div').show("slow");			
		});
}


function ris(filename){
	if ($('#bg').css('backgroundImage') == 'url(design/images/constructor/fon/tik_derevo.jpg)')
	{		
		alert($('#bg').css('backgroundImage'));
		$('#big_img').html('<img src=\'design/images/constructor/risunok/'+filename+'\' class=op width=180 height=450>');
	} else {
		$('#big_img').html('<img src=\'design/images/constructor/risunok/'+filename+'\' class=op width=180 height=450>');
	}
}

function fon(filename){
	$('#bg').css('backgroundImage', 'url(design/images/constructor/fon/'+filename+'.jpg)')
}

