$(function() {

    $('#slideshow').cycle({
        timeout:  0,
		fx: 'none',
        prev:    '.prevBtn',
        next:    '.nextBtn',
		before: updateCurrentImageCount
    });
	
	$("#emailInput").labelify({ labelledClass: "emailInputLabel" });

});

function updateCurrentImageCount()
{
	$('#slideshowCounter span').text($(this).attr('rel'));
	$('#slideshowCaption').html($(this).children('img').attr('alt'));
}

