$(document).ready(function() {
    $('.slideshow ul').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$("#container").vAlign();
});


(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $("html").height();
	var mh = (ph - ah) / 2;
	if ( ah < 1 ) mh = mh / 2;
	$(this).css('margin-top', mh);
	});
};
})(jQuery);
