$(function() {
	$("ul#menu li").hoverFix();
	});

/* IE6 hover workaround */
$.fn.hoverFix = function() {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass('hover-fix'); $('#debug').html('hover'); },
			function() { $(this).removeClass('hover-fix'); $('#debug').html(''); }
		);
	});
};	


function clickThumb(k, m, n) {
	$('#big_image').get(0).src = '/assets/images/'+k+'/'+n+'.jpg';
	$('#thumbs a').removeClass('active');
	$('#thumbs a').eq(m-1).addClass('active');
}

function expandText(t) {
	$('#text_'+t).toggle();
	$('#link_'+t).toggleClass('expanded');	
/* 	alert(this); */
}
