jQuery.noConflict();
(function($){

$(document).ready(function(){

	var biggestHeight = 0;  
	$('.same-height > li').each(function(){  
		if($(this).height() > biggestHeight){  
			biggestHeight = $(this).height();  
		}  
	});  
	$('.same-height > li').height(biggestHeight);  	

contentDiv = $('#content').height();
$('#contentBg').height(contentDiv);
$('#tabBg').height(contentDiv - 90);

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('img, #logo a, #menu, #menu li a span, #container2, #content h2, #content h2 span, .tabs1 .nav ul li, .tabs1 .nav li.active a, .tabs1 .nav li.active a span, .more, #container3, #container4, #contentBg, #content2, .tip1, #content3, #tabBg, #img6');
		}
	}

});

})(jQuery);
