$(document).ready(function() {
	$('div#professional-development div.box4-middle').accordion({ autoHeight: false, active: false, collapsible:true });
	$('div#faq div.box4-middle').accordion({ autoHeight: false, active: false, collapsible:true });
	$("a[rel^='prettyPhoto']").prettyPhoto();
	$(".tabs").tabs();	
	$('#teaching-supervision div.accordion h3').click(function() {
  		$(this).toggleClass('active');
		$(this).next().toggleClass('hide');
		return false;
	});
	$('#teaching-supervision div.box8 a.close').click(function() {
  		$(this).parent().addClass('hide');
		$(this).parent().prev().toggleClass('active');
		return false;
	});

	$('#collection-questions div.accordion h3').click(function() {
		$(this).toggleClass('active');
		$(this).next().toggleClass('hide');
		return false;
	});

	$('#collection-questions div.box8 a.close').click(function() {
		$(this).parent().addClass('hide');
		$(this).parent().prev().toggleClass('active');
		return false;
	}); 
});

function doAddProductGrowl() {
	$.blockUI({ 
            message: $('div.growlUI'), 
            fadeIn: 700, 
            fadeOut: 700, 
            timeout: 7000, 
            showOverlay: false, 
            centerY: false,
	     css: { 
                width: '350px', 
                top: '10px', 
                left: '', 
                right: '10px', 
                border: 'none', 
                padding: '5px', 
                backgroundColor: '#000', 
                '-webkit-border-radius': '10px', 
                '-moz-border-radius': '10px', 
                opacity: .6, 
                color: '#fff' 
            }  
        });
}

