/*
	Rising Solutions Pvt Ltd;
	Author: Rangarajan, Madhan Vijayakumar & Venu Majji
	Company: Rising Solutions Inc	
*/
window.addEvent('domready', function(){
	// Main & Sub Title
	if($$('.ph_wrap').length != 0){
		var ph_mainTitle = $$('.ph_mainTitle')[0].getCoordinates().height;
		var ph_subTitle = $$('.ph_subTitle')[0].getCoordinates().height;
		if(ph_mainTitle > ph_subTitle){
			$$('.ph_subTitle')[0].setStyle('height',ph_mainTitle + 'px');
		} else{
			$$('.ph_mainTitle')[0].setStyle('height',ph_subTitle + 'px');
		}
	}
	// University News
	new Accordion('h3.atStart', 'div.atStart', {		
		opacity: false,
		onActive: function(toggler, element){
			toggler.addClass('acord_active');
		},
		onBackground: function(toggler, element){
			toggler.removeClass('acord_active');
		},
		alwaysHide: true,
		show: 0
	}, $('management'));
		
});
