Cufon.replace('h1, h2, .cf');

$(function(){
	$('#main img').each(function(){
		switch($(this).css('float')){
			case "left":
				$(this).css('margin-right', '10px');
				break;
			case "right":
				$(this).css('margin-left', '10px');
				break;
		}
	});
	$('#zebra2').mouseover(
		function(evt){			
			$('#zebra img').css({'width':'100%','height':'100%', margin:'0 auto'});
			evt.preventDefault()
			return false;
		});
	$('#zebra2').mouseout(
		function(evt){			
			$('#zebra img').css({'width':'90%','height':'90%', margin:'10px auto 0'});
			evt.preventDefault()
			return false;
		});
});
