$(function(){
	var select = 0;	// Tabs

	if($.cookie("top_tab")) {
		select = $.cookie("top_tab");
	}

	$('.tabs').tabs({ selected: select });

	$( ".tabs" ).bind( "tabsselect", function(event, ui) {
		var path = '/';
		$.cookie("top_tab", ui.index, { path: path,expires: 30 });
	});

});

