 // This file creates all the animation affects
 // Find all the affects at http://www.stilbuero.de/2006/11/05/tabs-version-2/
 
 function createCallback(type) {
                return function() {
                    alert('callback: ' + type);
                }
            };

            $(document).ready(function() {
				// Add animation affects here
				$('#photo-venues').tabs({fxFade: true, fxSpeed: 'fast'});
				$('#cal-highlights').tabs({fxFade: true, fxSpeed: 'fast'});
 
                $('<p><a href="#">Activate third tab</a> <code>$(\'#container-1\').triggerTab(3);</code></p>').appendTo('#trigger-tab').find('a').click(function() {
                    $('#container-1').triggerTab(3);
                    return false;
                });
                $('<p><a href="#">Disable third tab</a> <code>$(\'#container-1\').disableTab(3);</code></p>').appendTo('#trigger-tab').find('a').click(function() {
                    $('#container-1').disableTab(3);
                    return false;
                });
                $('<p><a href="#">Enable third tab</a> <code>$(\'#container-1\').enableTab(3);</code></p>').appendTo('#trigger-tab').find('a').click(function() {
                    $('#container-1').enableTab(3);
                    return false;
                });

            });