jQuery(document).ready(function($)
{
	$('div.navigation').css({'width' : '300px', 'float' : 'left'});
	$('div.content').css('display', 'block');

	// Initialize Minimal Galleriffic Gallery - home specific for top image rotator
	$('#imgNad .galleriffic-nav').galleriffic(
	{
		numThumbs:              6,
		imageContainerSel:      '#imgNad .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:    '#imgNad .caption-container',
		loadingContainerSel:    '#imgNad .loader',
		autoStart:              true, // Specifies whether the slideshow should be playing or paused when the page first loads
		delay:                  3000 // in milliseconds
	});

});