// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready
var $j = jQuery.noConflict();
     
     // Use jQuery via $j(...)
     $j(document).ready(function(){

 
$j(".slidetabs").tabs(".images > div", {

	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",

	// start from the beginning after the last tab
	rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({autoplay: true, interval: 4000,clickable:false});
});

 function unhide(divID) {
 var item = document.getElementById(divID);
 if (item) {
 item.className=(item.className=='wpmlwidgetshow')?'wpmlwidget':'wpmlwidgetshow';
 }
 }
 
