/* Slide-Show */
/*
jQuery(document).ready(function($) {
	$('#slide-show').cycle({
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    next:   '#prev1', 
	    prev:   '#next1',
	    random: 1
	});
});
*/

$(document).ready(function() {
    $('.slide-show').cycle({
        fx: 'fade',
        speed: 'fast',
        timeout: 5000,
        next: '#next1',
        prev: '#prev1'
    })
});


/* Tabs */
jQuery(document).ready(function(){
$("#tabs").tabs();
});
