jQuery.noConflict();
(function($){

$(document).ready(function(){

	$(window).bind('resize', function(){
		var h = $(window).height() - 180;
		$('#pageWrap').css({ height: h + 'px' });
	});

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('');
		}
	}

});

})(jQuery);