
<!-- hand.made by true.crew | http://www.truecrew.ru | info@truecrew.ru -->
<!-- © 2011. All rights reserved -->

$(document).ready(function(){
	var num=11;
	var face = Math.round((Math.random() * num));
	$('div.layout').css({'background':'black url(i/bg_body_'+face+'.jpg) right top no-repeat'});
	
	$('#logo').click(function(){
		var face = Math.round((Math.random() * num));
		$('div.layout').css({'background':'black url(i/bg_body_'+face+'.jpg) right top no-repeat'});
	});  
	
	var h = $('.news').height();
	$('.refresh').css({height:h+"px"});
	$('#phrase').hide();
	$('#shownews').toggleClass('shownews_on');
	
	$('#shownews').click(function(){  
		$('#phrase').toggle();
		$('.news').toggle();
		$('#shownews').toggleClass('shownews_on');
		$(window).focus();
		return false;
	}); 

	$(window).resize(function(){
		var h = $('.news').height();
		$('.refresh').css({height:h+"px"});
		/*alert(h+'px');*/
	});
	
	
	$(function() {
	$('a.lightbox').lightBox({
		overlayOpacity: 0.6,
		containerResizeSpeed: 250,
		txtImage: 'Фотография',
		txtOf: 'из'
	   });
	});




});
// end of dom load functions
