$(document).ready(function(){
	    $('#partner').slideshow({
			width:200,      // width in px
	        height:200,     // height in px
			playframe:false,
			index:0,
			panel: false,
			title: false,
			imglink: true
		}).playSlide();
	});
	
	$(function(){
	
		// Tabs
		$('#tabs').tabs();
		
		//hover states on the static widgets
		$('#dialog_link, ul#icons li').hover(
			function() { $(this).addClass('ui-state-hover'); }, 
			function() { $(this).removeClass('ui-state-hover'); }
		);
		
	});
