	$(function () {
		
		$("#tabLinks li").mouseover (function(){
			$(this).addClass ("hover")
		});
		$("#tabLinks li").mouseout (function(){
			$(this).removeClass ("hover")
		});
		
		var interval;
		
		
		$("div.postimg").mouseover (function(){
			$(this).find("a.prepend").css("height","142px");
			$(this).find("div.postdata").css("height","30px");
			$(this).find("span").slideDown("slow");
		});
		$("div.postimg").mouseout (function(){
			$(this).find("span").hide();
			$(this).find("div.postdata").css("height","16px");
			$(this).find("a.prepend").css("height","156px");
		});
		
		
		
		$(function () {
			
			var hei = $("#container").height();
			$("#leftside").height(hei);
			$("#rightside").height(hei+18);
					
					
			var tabContainers = $('div#tabContainer > ul');
			tabContainers.hide().filter(':first').show();
			
			$('#tabLinks li').click(function () {
				tabContainers.hide();
				tabContainers.filter("#" + $(this).attr('id') + "Box").show();
				$('#tabLinks li').removeClass('selected');
				$(this).addClass('selected');
				return false;
			}).filter(':first').click();
		});
		
		
		
	});