/* Author: 

*/

$(document).ready(function(){
    //content tabs
  	$(function() {
  		$(".tabbed").tabs({ fx: [{opacity:'toggle', duration:'fast'}] });
  	});
    //hide empty tabs
    var empty_tabs = $('.tab').each(function(){
      var $this = $(this);
      var this_id = "#" + $this.attr('id');
      if ($this.children().length == 0 && this_id != "#about") {
        $("a[href=" + this_id + "]").remove();
      }
    });	
    $(".gallery").cycle()
});




