	$(document).ready(function(){
		$('a.toggle').bind('mouseenter', function(){
			$('.ms-slideshow-content').css('display', 'none');
			$('.ms-slideshow-toggle').removeClass('ms-slideshow-toggle-active');
			$(this).parent().addClass('ms-slideshow-toggle-active');
			//$(this).parent().after('<div class="ms-slideshow-selector"></div>')
			$(this).next().css('display', 'block');
		});
	});