// JavaScript Document
$(document).ready(function() {
	$("#tabs a")
		.click(function(e){
			e.preventDefault();
			var child_pos = $(this).parents('ul').children().index($(this).parent());
			var parent_height = $(this).parents('ul').height();
			var y_offeset = child_pos * parent_height;
			$(this).parents('ul').css("background-position", "0px -"+y_offeset+"px");
			
			$("#tabs_content .tab_pane").hide();
			$($("#tabs_content").children()[child_pos]).show();
		});
	$(".tabs_verticle").accordion({active: false});
});

function browser_message() {
	document.write('<div id="browser_message"><strong>Note:</strong> Your browser is outdated, which may cause this website to display incorrectly. Please update to a modern browser.</div>');
};

function link_new_window(link_text, url, window_name, window_width, window_height) {
	document.write('<a href="#" onclick="window.open(\'' + url + '\',\'' + window_name + '\',\'width=' + window_width + ', height=' + window_height + ',menubar=1,scrollbars=1\'); return false;">' + link_text + '</a>');
};
