$(function (){

	// initialize superfish nav bar with drop downs
	/*
	$('#nav-container ul#nav').supersubs({ 
		minWidth:    12,
		maxWidth:    45,
		extraWidth:  1
	}).superfish({
		delay:       500,
		animation:   {opacity:'show',height:'show'},
		speed:       'fast',
		autoArrows:  false,
		dropShadows: false
	});
	*/
	
	// initialize slide show
	$('#slideshow').cycle({
        fx:			'fade',
        speed:		1000,
        timeout:	5000
    });
	
	// force target="_blank" equivalent
	$('a[rel="external"], area').click(function(){window.open(this.href);return false;});
	
	// convert mailto links
	$('span.mailme').mailme();
	
	// ensure these forms submit to a new window
	$('form#frm-workoutlog, form#frm-join').attr('target','_blank');
	
});

// ...after all images have loaded
$(window).load(function(){
	
	// ensure all columns on layout maintain equal height
	$('.col').equalHeights();
	
});