// Make calls to other operations from this file. 


// fired at the end of the page once all html has loaded
function onDOMload () {
	if(typeof sIFR == "function"){
		switchFonts();
	};
	if(typeof buildTransitions == "function") {
		buildTransitions();
	};
};
function popup() {
	window.open("/services/popup.php","Window1","menubar=no,width=560,height=360,toolbar=no");
}
// fired once all content has loaded
function onPageLoad () {
	
};
document.onload = onPageLoad();

$(document).ready(function() {

	$('.data').hide();
	$('.title').click(function() {

		var active = ($(this).hasClass('active'));
		if (active) {
			$(this).removeClass('active').parent().find('.data').slideUp('slow');
		} else {
			$(this).addClass('active').parent().find('.data').slideDown('slow');
			$('.data').css("display:block;position:relative");
		}
		
		if (active) {
			$(this).removeClass('active').parent().find('.data1').slideUp('slow');
		} else {
			$(this).addClass('active').parent().find('.data1').slideDown('slow');
			$('.data1').css("display:block;position:relative");
		}
		
		return false;
	});
	
	
});
