$(function(){
	//fix IE png bug
	if ($.browser.msie && parseInt($.browser.version) < 7) {
		$('.fixPng').each(function(){
			var w = this.width;
			var h = this.height;
			$(this).css({
				'width': w,
				'height': 0,
				'paddingTop': h
			});
			this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "')";
		});
	}
	
	//sidebar title
	$('.sidebar .title a').click(function(){
		$('.sidebar .title a').removeClass('cuttr');
		$('.sidebar .title a').css('filter','');
		$(this).addClass('cuttr');
		$(this).css('filter','progid:DXImageTransform.Microsoft.AlphaImageLoader(src="css/images/bg_sidtitle.png")');
	});
});