$(document).ready(function() {
	
	//stop screen from jumping when sidebar tabs clicked
	$('#tablink1, #tablink2, #tablink3').click(function() {
		return false;
	});
	
	//open these links in a new window
	$('#clickable_items a, #right_text a, #left_text a').attr('target', '_blank');
	
	//png fix for the following element in ie6
	$('#calendar_wrap').addClass('png_bg');
		
});