$(function(){
		$("div.tabs").tabs(".images > div", { 
        // enable "cross-fading" effect 
        effect: 'fade', 
        fadeOutSpeed: "slow", 
        // start from the beginning after the last tab  
        rotate: true,  
        clickable: false
    // use the slideshow plugin. It accepts its own configuration 
    }).slideshow({autoplay: true}); 
     $("ul.tabs").tabs("div.panes > div"); 
     $("a.actionButton").click(function(){
		window.location=$(this).find("a").attr("href");     
		return true;
		});	
});
