jQuery(document).ready(function($)
{
	$('div.navigation').css({'width' : '300px', 'float' : 'left'});
	$('div.content').css('display', 'block');

	// Initialize Minimal Galleriffic Gallery
	$('#thumbs').galleriffic(
	{
		numThumbs:              9,
		imageContainerSel:      '#slideshow',
		//controlsContainerSel:   '#controls',
		enableBottomPager:      false,
		renderSSControls:       false, // Specifies whether the slideshow's Play and Pause links should be rendered
        renderNavControls:      false, // Specifies whether the slideshow's Next and Previous links should be rendered
		captionContainerSel:    '#caption',
		loadingContainerSel:    '#loading'
	});

});
