$(document).ready(function() {
	
	$('div.content').css('display', 'block');

    $('#gallery').galleriffic('#thumbs-min', {
        imageContainerSel:      '#slideshow', // The CSS selector for the element within which the main slideshow image should be rendered
        autoStart:              true,
        renderSSControls:		false,
        renderNavControls:		false,
        onTransitionOut:        function(callback) {
						$('#caption').fadeTo('fast', 0.0);
						$('#slideshow').fadeTo('fast', 0.0, callback);
		},
		onTransitionIn:         function() {
						$('#slideshow').fadeTo('fast', 1.0);
						$('#caption').fadeTo('fast', 1.0);
						if ($('#slideshow img').width() < $('#slideshow img').height()) {
					    	$('#slideshow img').css("margin-top","-100px");
					    	$('#slideshow img').width(270);					    	
					    } else {
					    	$('#slideshow img').width(270);					    	
					    	$('#slideshow img').height(203);					    	
					    };
		}
    });
    
});