$(document).ready(function() {
	$('a[href=#about1]').add('a[href=#about2]').add('a[href=#about3]').add('a[href=#about4]').add('a[href=#about5]').each( function() {
		$(this).click( function(){ 
			$(this).parent().find('div').slideToggle();
			return false;
		});
	});
	$('#difference li div').hide();
	
	$ref = $.jqURL.get('ref');
		if ($ref == 'aapd') {
			$('input#si_contact_subject1').val('Tell me more about Ask-a-planner day');
		} else if ( $ref == 'about-us' ) {
			$('input#si_contact_subject1').val('Tell me more about Financial Finesse');
		} else if ( $ref == 'content' ) {
			$('input#si_contact_subject1').val('Tell me more about Online Content Modules');
		} else if ( $ref == 'flc' ) {
			$('input#si_contact_subject1').val('Tell me more about the Financial Learning Center');
		} else if ( $ref == 'helpline' ) {
			$('input#si_contact_subject1').val('Tell me more about the Helpline');
		} else if ( $ref == 'moneymail' ) {
			$('input#si_contact_subject1').val('Tell me more about MoneyMail');
		} else if ( $ref == 'pfc' ) {
			$('input#si_contact_subject1').val('Tell me more about the Personal Financial Consultations');
		} else if ( $ref == 'podcast' ) {
			$('input#si_contact_subject1').val('Tell me more about the Podcasts');
		} else if ( $ref == 'webcast' ) {
			$('input#si_contact_subject1').val('Tell me more about the Webcasts');
		} else if ( $ref == 'workshop' ) {
			$('input#si_contact_subject1').val('Tell me more about the Workshops');
		} else if ( $ref == 'benefits' ) {
			$('input#si_contact_subject1').val('Tell me more about the Benefits Planning Program');
		} else {
			$('input#si_contact_subject1').val('General question');
		}
	
});


