$(document).ready(function() {
													 
	$('#forumContent').before('<div class="column" id="forumSidebar"><div class="colPad"></div></div>');
	$('.forumHeader .Box').appendTo('#forumSidebar > .colPad');
	$('.forumHeader .Photo').prependTo('#forumSidebar > .colPad');
	$('.Bookmark .Star img').remove();
	$('.Bookmark .Star').append('*');
	
	
	$(".pageThird").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	$('.products li').hide();
	$('.products li.product_typeface').show();
	$('.tabs li.product_typeface').addClass('current');
	$('.tabs li.product_typeface').click(function () {
		$(this).parent().find('li').removeClass('current');
		$(this).addClass('current');
		$('.products li').hide();
		$('.products li.product_typeface').show();
	});
	$('.tabs li.product_wp').click(function () {
		$(this).parent().find('li').removeClass('current');
		$(this).addClass('current');
		$('.products li').hide();
		$('.products li.product_wp').show();
	});
	$('.tabs li.product_icons').click(function () {
		$(this).parent().find('li').removeClass('current');
		$(this).addClass('current');
		$('.products li').hide();
		$('.products li.product_icons').show();
	});
	
	
});

