jQuery(document).ready(function(){
	/* Resize too large images */
	var size = 440;
	var image = jQuery('#content img');
	
	for (i=0; i<image.length; i++) {
		var bigWidth = image[i].width;
		var bigHeight = image[i].height;
	
		if (bigWidth > size) {	
			var newHeight = bigHeight*size/bigWidth;
			image[i].width = size;
			image[i].height = newHeight;
		}
	}
	
	jQuery(".left:empty + .right:empty").parent().remove();
});

Cufon.replace('h1', {
	color: '-linear-gradient(#6A53C3, #3D3070)',
	textShadow: '0 1px 0 #fff',
	hover: {
		color: '-linear-gradient(#3D3070, #6A53C3)'
	}
});

Cufon.replace('h2', {
	color: '-linear-gradient(#B84E82, #6D2E4C)',
	textShadow: '0 1px 0 #fff',
	hover: {
		color: '-linear-gradient(#6D2E4C, #B84E82)'
	}
});

Cufon.replace('h3, h4', 'author_signature', {
	textShadow: '0 1px 0 #fff'
});

/*Cufon.replace('author_signature', {
	font-family: 'angelina'
});*/