Cufon.replace('.contact p');
Cufon.replace('#navigation ul li a', { hover: true } );
Cufon.replace('p.order-button a', { hover: true } );
Cufon.replace('p.button-blk a', { hover: true } );

(function($){
	$(document).ready (function(){
		fixpng();
		
			//PNG FIX for IE6
		if($.browser.msie && $.browser.version.substr(0,1) == 6 ){
			DD_belatedPNG.fix('p.button-blk a span em, p.order-button a span em')
		}
	
		var sidebar_height = $('#sidebar').outerHeight() - parseInt($('#sidebar').css('padding-top')) - parseInt($('#sidebar').css('padding-bottom'));
		var content_height = $('#content').outerHeight() - parseInt($('#content').css('padding-top')) - parseInt($('#content').css('padding-bottom'));
				
		if (sidebar_height > content_height) {
			$('#content').height( sidebar_height );
		}
		else {
			$('#sidebar').height( content_height );
		}
			
	});
	
	
	function fixpng() {
		if ($.browser.msie && $.browser.version == '6.0') {
			var blank_src = 'css/images/empty.gif';
				$('img.fixpng').each(function() {
			var src = $(this).attr('src');
				$(this).attr({
				'style' : 'background-image: none; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="'+ src +'", sizingMethod="image");',
				'src' : blank_src
			});
		});
	};
	}			
})(jQuery)
