$(document).ready(function()
{
	// add juice to all dl lists
	if (styleSheet == "print") {
		setTimeout(function(){
		//window.print();
		}, 1000);
	}
	else {
		convertDlLists();
		
		makeSideButtonsClickable();
		
		$('#menu_sub').dropDownMenu({
			timer: 800,
			parentMO: 'parent-hover'
		});
		
		setTimeout(initPageHeight, 500);
	}
    
    // if ie6, fix all transparent PNG's
    if ($.browser.msie && $.browser.version == '6.0')
        $(document).pngFix();
});

