$.noConflict();
jQuery(document).ready(function($) {
	
	
	// =========================================
	// = vertically & horizontally center text =
	// =========================================
	
	$('#events li').each(function() {

		$(this).find('span').css('padding', 0);
		
		var text = $(this).find('.event span'),
			textHeight;
		
		$(this).hover(function(e) {
			textHeight = text.outerHeight();
			text.css({
			  'top': '50%',
			  'margin-top': '-' + (textHeight/2) + 'px'
			});
		});
		
	});

	// =============
	// = slideshow =
	// =============
	$('.slideshow').cycle({
		pause: true
	});
	
	$('body').addClass('hasjs');
	
	// ===================
	// = contact details =
	// ===================

	// var CD = {};
	// CD.text = $('.vcard').clone();
	// 
	// $('#nav a[href=#contact]').click(function(e) {
	// 	e.preventDefault();
	// 	console.log('clicked');
	// 	if ( ! $('#contact-details').length ) { 
	// 		 
	// 		$('<div />', {
	// 			'id':'contact-details',
	// 			'html': CD.text
	// 		}).prependTo('#content').hide(0, function() {
	// 			$('#contact-details').slideDown('fast');
	// 		});
	// 
	// 	} else {
	// 		
	// 		$('#contact-details').slideUp('fast', function() {
	// 			$(this).remove();
	// 		});
	// 		
	// 	}
	// 	
	// });
});

