$(document).ready(function(){
	// console.log('hello world');
	
	/* http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/ */
	/* var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	}); */
	
	/* !PRETTYPHOTO */
	/********************************/
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	/* !CYCLE */
	/********************************/
	$('.moreTitlesCycle').cycle({
		// autostop: 1,
		fx: 'scrollHorz',
		height: '96px',
		next: '#morePrev',
		nowrap: 1,
		pager: '#mtnPager',
		// pause: 1,
		// pauseOnPagerHover: 1,
		prev: '#moreNext',
		// speed: 2000,
		// timeout: 10000
		timeout: 0
	});
	
	/* !VIEW ALL */
	/********************************/
	$('#vaDates').click( function() {
		$('#menu1').slideToggle();
	});
	$('#vaAlpha').click( function() {
		$('#menu3').slideToggle();
	});

});