(function ($) {
   $.fn.vAlign = function() {
      return this.each(function(i){
      var ah = $(this).height();
      var ph = $(this).parent().height();
      var mh = (ph - ah) / 2;
      $(this).css('padding-top', mh);
      });
   };
})(jQuery);


$(document).ready( function() {

	$('#sites h3 span strong').vAlign();

	$('#sites h3 span').click( function() {
		$(this).parent().parent().toggleClass('on').find('div').slideToggle('slow', 'easeInOutCirc');
	})

	$('#sites li').addClass('on');
	$('#sites li:not(:first) h3 span').click();
	
	$('#karaoke').fancybox({
		type: 'iframe',
		width: 1110,
		height: 500
	});
});
