<!-- Expose --> 
// execute your scripts when the DOM is ready. this is a good habit
$(function() {
	// assign a click event to the exposed element, using normal jQuery coding
	$(".expose").click(function() {
		// perform exposing for the clicked element
		$(this).expose();
	});
});

<!-- Tabs -->  
// perform JavaScript after the document is scriptable.
$(function() {
	// :first selector is optional if you have only one tabs on the page
	$(".css-tabs:first").tabs(".css-panes:first > div");
});

// perform JavaScript after the document is scriptable.
$(function() {
	$("ul.tabs").tabs("> .pane");
});

<!-- Accordion --> 
$(function() { 
 
$("#accordion").tabs("#accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});
});

<!-- IE7 z-index fix --> 
$(function() {
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
