$(document).ready(function() {
	// footer related
	$('#footer ul li:last-child').addClass('last');
	
	//external link setup
	$("a[@rel='external']").attr('target','_blank');
	$('#logo').click(function() {
		window.location.href = "http://masterterrazzo.com/";
	});
	
	// some column magic
	/*
	var left_height = $('#sidebar').height(); 
	var right_height = $('#content').height();	
	if(right_height > left_height) {$('#sidebar').height(right_height);} 
	  else {$('#content').height(left_height);}*/
});