$(document).ready(function(){ 
	
$('#gallery').hide();
$('#gallery img').css({display: 'inline'});	
	
	$('.reviews').hide();
	$('#gallery').hide();
	$('.video').hide();
	$('.excerpt').show();
	$(window).load(function(){ 
	excerptheight= $('.excerpt').height('auto').height() + 80;	
	$('.bodybottom').css({minHeight: "800px", height: excerptheight + "px"});
	$('.excerptbutton').css({backgroundPosition: "0 -114px"});
	});
$('#gallery img:odd').css("margin-left", "50px");


$('.excerptbutton').click(function() {
	$('.video').hide();
	$('.reviews').hide();
	$('#gallery').hide();
	excerptheight= $('.excerpt').height('auto').height() + 80;	
	$('.bodybottom').css({minHeight: "800px",height: excerptheight + "px"});
	$('.excerpt').show();
	$('.videobutton').css({backgroundPosition: "0 -1026px"});
	$('.gallerybutton').css({backgroundPosition: "0 -342px"});
	$('.reviewsbutton').css({backgroundPosition: "0 -684px"});
	$('.excerptbutton').css({backgroundPosition: "0 -114px"});
});

$('.videobutton').click(function() {
	$('.excerpt').hide();
	$('.reviews').hide();
	$('#gallery').hide();
	videoheight= $('.video').height('auto').height() + 80;		
	$('.bodybottom').css({minHeight: "800px",height: videoheight + "px"});
	$('.video').show();
	$('.gallerybutton').css({backgroundPosition: "0 -342px"});
	$('.reviewsbutton').css({backgroundPosition: "0 -684px"});
	$('.excerptbutton').css({backgroundPosition: "0 -0"});
	$('.videobutton').css({backgroundPosition: "0 -1140px"});
});

$('.gallerybutton').click(function() {
	$('.excerpt').hide();
	$('.reviews').hide();
	$('.video').hide();
	galleryheight= $('#gallery').height('auto').height() + 80;		
	$('.bodybottom').css({minHeight: "800px",height: galleryheight + "px"});
	$('#gallery').show();
	$('.reviewsbutton').css({backgroundPosition: "0 -684px"});
	$('.excerptbutton').css({backgroundPosition: "0 -0"});
	$('.videobutton').css({backgroundPosition: "0 -1026px"});
	$('.gallerybutton').css({backgroundPosition: "0 -456px"});
});

$('.reviewsbutton').click(function() {
	$('.excerpt').hide();
	$('#gallery').hide();
	$('.video').hide();
	reviewsheight= $('.reviews').height('auto').height() + 80;	
	$('.bodybottom').css({height: reviewsheight + "px"});
	$('.reviews').show();
	$('.excerptbutton').css({backgroundPosition: "0 -0"});
	$('.videobutton').css({backgroundPosition: "0 -1026px"});
	$('.gallerybutton').css({backgroundPosition: "0 -342px"});
	$('.reviewsbutton').css({backgroundPosition: "0 -798px"});
});
	
});
