/*
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();
});
*/

$(document).ready(function() {
	$('li').click(
		
		
	    function() {
	        $(this).animate("fast");
	    }
	    
	);
});

/* FONT REPLACEMENT*/
Cufon.replace('.content, h1', {
	color: '-linear-gradient(#243748, #1c2b38)',
	textShadow: '0px 1px 0px #78a4cb',
});


