$(function(){
	var tab = 0;
	var tabs = $( '#tabs-jquery' ).tabs(
		{ 'collapsible' : true, 'fx' : { 'opacity' : 'toggle', 'height' : 'toggle' }, 'cache' : false, 'selected' : readCookie( 'CakeCookie[tab]' ) }
	);
	var eles = $( '#tabs-jquery ul li a' );
	var len = eles.length;
	eles.each( function( i ){
		$( this ).click(function(){
			$.cookie( 'CakeCookie[tab]', i, { 'expires' : 30 } );
			//alert( readCookie( 'tab' ) );
		});
	});
	$( '#mainbody' ).css( 'width', '100%' );

	$("#dialog").dialog({
		bgiframe: true,
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
});
