jQuery.noConflict();

function changeContent(tabId) {
	jQuery('#' + tabId).show().siblings().hide();
}

document.write ('<map name="tabsMap" id="tabsMap">');
document.write ('<area class="view" shape="rect" coords="2,3,44,15" href="#" alt="View" />');
document.write ('<area class="submit" shape="rect" coords="47,3,100,16" href="#" alt="Submit" />');
document.write ('<area class="get" shape="rect" coords="102,3,136,16" href="#" alt="Get" />');
document.write ('<area class="find" shape="rect" coords="138,3,175,15" href="#" alt="Find" />');
document.write ('</map>');

jQuery(document).ready(function($) {
	jQuery('#tabsMap area').click(function(event) {
		event.preventDefault();
		tabClass = $(this).attr('class');
		tabId = "tab-" + tabClass;
		
		changeContent(tabId);
		MM_swapImage('tabImg', '', '/images/tabs_' + tabClass + '.gif', 1);
	});
});

