$(document).ready(function()
{
	
	initFaqSelector();
	
	// 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);
		
		$('.tooltips_anchor[title]').tooltip({position: "bottom right"});
	}
    
    // if ie6, fix all transparent PNG's
    if ($.browser.msie && $.browser.version == '6.0')
        $(document).pngFix();
});


function initFaqSelector()
{
	$('#faq_select').change(function() {
		if ($(this).val() == ''){
			$('#faq_intro').show();
		} else {
			$('#faq_intro').hide();
		}
		
		$('.faq_container').hide();
		$('#' + $(this).val()).show();
		
		initPageHeight();
	});
}
