$(document).ready(function() {
	
	// Cross browser :first-child selectors
	$('div#buckets a.bucket:first-child').css('margin-left', '0');
	$('body#shop div#rightCol ul li:first-child').css('border-top', 'none');
	
	// Custom Scrollbar
	$('div.scroll').jScrollPane();
	
	// Gallery L2
	$('li#gallery-nav').mouseover(function() {
		$('li#gallery-nav ul').show();
	});
	$('li#gallery-nav ul').mouseout(function() {
		$(this).hide();
	});
	
	// Gallery
    var galleries = $('.ad-gallery').adGallery();
    $('#switch-effect').change(
      function() {
        galleries[0].settings.effect = $(this).val();
        return false;
      }
    );
    $('#toggle-slideshow').click(
      function() {
        galleries[0].slideshow.toggle();
        return false;
      }
    );

	// Press Gallery
	$('ul#press-articles li').mouseover(function() {
		$('img', this).css('opacity', '0.1');
		$('p.press-info', this).show();
	});
	$('ul#press-articles li').mouseout(function() {
		$('img', this).css('opacity', '1');
		$('p.press-info', this).hide();
	});
	$('ul#press-articles a.fancy').fancybox({
		titleShow: false
	});
	
	// Shop List
	$('p#isCouture').hide();
	$('span#showCouture').click(function() {
		$('span#showCouture').hide();
		$('p#isCouture').show();
	});
	$('p#isHome').hide();
	$('span#showHome').click(function() {
		$('span#showHome').hide();
		$('p#isHome').show();
	});
	
});
