jQuery(document).ready(function() {
	jQuery("#content > div").hide();
	jQuery("#content > div:eq(0)").show();
	jQuery("#tabs > a:eq(0)").css("background", "url(images/tab-select.png) top left no-repeat");
});

function opentab(num) {
	jQuery("#content > div").hide();
	jQuery("#content > div:eq(" + (num-1) + ")").fadeIn();
	jQuery("#tabs > a").css("background", "url(images/tab.png) top left no-repeat");
	jQuery("#tabs > a:eq(" + (num-1) + ")").css("background", "url(images/tab-select.png) top left no-repeat");	
}
