// JavaScript Document
$(document).ready(function(){
    $("#tabs").tabs();
	$("#tabs-rotate2").tabs({ fx: { opacity: 'toggle', duration: 1000 } }).tabs('rotate', 5000);
	$('#tabs-rotate2').hover(function(){
			$(this).tabs('rotate', 0, false);
		},function(){
			$(this).tabs({ fx: { opacity: 'toggle', duration: 1000 } }).tabs('rotate', 10000);
		}
	);
});


$(document).ready(function() {
    $("#content_slider").tabs({
        event: 'mouseover',
        fx: {
            opacity: 'toggle',
            duration: 'slow'
        }
    }).tabs('rotate', 5000, true);
});
