$(function() {

	// Fancybox
	$(".thumb-gallery a").fancybox({
		'titlePosition' : 'inside',
		'overlayShow'	:	false
	});

	$("a[rel=fgallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
	});

	// Home Slideshow Cycle Plugin
	$('#home-slideshow #slides').cycle({
		fx:     'fade',
		timeout: 0,
		prev:    '#home-slideshow #sn-prev',
		next:    '#home-slideshow #sn-next',
		pager:  '#home-slideshow pager-nav',
		pagerAnchorBuilder: function(idx, slide) {
			// return sel string for existing anchor
			return '#home-slideshow #pager-nav li:eq(' + (idx) + ') a';
		}
	});

	// Color Options Slideshow
	$('#color-slides #slides').cycle({
		fx:     'fade',
		timeout: 0,
		prev:    '#color-prev',
		next:    '#color-next'
	});

	// Carousel Slider
	$('#carousel').jcarousel();

});




















