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