//////////////////////////////////////
// Image Roll Over Action
//////////////////////////////////////
//////////////////////////////////////
// jCarousel
//////////////////////////////////////
$(function() {
	$('a img').wink();
	$('.bt_form').wink();
	
	$('#footbanner').jcarousel({
		auto: 2,
    	wrap: 'circular'
    });
});


//////////////////////////////////////
// Tabs
//////////////////////////////////////
$(function(){

	// Tabs
	$('#tabs').tabs({ fx: { opacity: 'toggle', duration: 'fast'  } });
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	
});


