$(document).ready(function(){
	// overlabel
	$("label.overlabel").overlabel();
	
	// content swap
	$('ul.swap li:first-child').addClass('active');
	$('img.hidden:eq(0)').show();
	$('ul.swap a').click(function(){
		var $this = $(this);
		$('ul.swap li').removeClass('active');
		$('img.hidden').hide();
		$($this.attr('href')).fadeIn('slow');
		$this.parent().addClass('active');
		return false;
	});
});