$(document).ready(function() {
	var pathname = window.location.pathname;
	if(pathname.match("/news|category/"))
	{
		//WIDTH and FLOAT for the main content layer in the news section. 
		$("div#content").width(660).css({float:'left'});
	}
	
	$(".clickablebox").click(
		function() {
			window.location = $(this).children(".hiddenlnk").attr('href');
		}
	);		
});
