jQuery().ready(function() {
	$(".smallmenu a").click(function () {
		var target = $(this).parent().position().left;
		$(".submenu-bg").stop().animate( {left: target}, "slow");
	});
	
	$('.slideimage').cycle({ 
		fx:     'scrollRight', 
		speed:  'slow', 
		timeout: 3000, 
		pager:  '.slidenav' 
	});
		
	$('.forum_wrapper').hide().filter(':first').show();
	
	$('.smallmenu a').click(function () {
		$('.forum_wrapper').hide().filter(this.hash).fadeIn("1500");
		return false;
	});
}); 