function changesize(){
if($('#maxi').is(':visible')){

$('#content').parent().hide();
$('#content_shadow').css('overflow','hidden').height(200);

$('#maxi').css('overflow','hidden').height(200);
	if ($('body').width()>1600) $('#maxi').width(1600);
	else $('#maxi').width('auto'); 
	if ($('body').height()>1200) $('#maxi').height(1200);
	else $('#maxi').height($('#maxi').parent().height());

$('#maxi').css('overflow','auto');
$('#content').parent().show();
$('#content_shadow').height($('#content_shadow').parent().height());

$('#content').parent().height($('#content_shadow').height()-40);

$('#content').height($('#content').parent().height());

}

$('#content_shadow').css('margin-bottom',-$('#content_shadow').height()).css('overflow','auto');


}

$(window).bind("resize", function(){changesize();});
$(window).bind("load", function(){changesize();});

$(document).ready(function(){

$("a[href$=jpg]").click(function(){return hs.expand(this);});
$("a[href$=gif]").click(function(){return hs.expand(this);});
$("a[href$=png]").click(function(){return hs.expand(this);});
$("a[href$=jpeg]").click(function(){return hs.expand(this);});

$('.decore').find('tr td:first').addClass('first');
$('.decore').find('tr:first').addClass('first');

$('.gallary_item').hover(
function(){$(this).addClass('hover');},
function(){$(this).removeClass('hover');}
);
$('.video_item').hover(
function(){$(this).addClass('hover');},
function(){$(this).removeClass('hover');}
);

changesize();


});
