jQuery.noConflict();     
jQuery(document).ready(function($){

	// toggle homepage contact form on click
	$('a.contactTrigger').click(function(){
		$('#contactForm').toggle('normal');
		});
		
	if ( $('#adminbar #toolbar').length ) { // check to see if logged in
		
		// fix layout while logged in
		$("#home #mainContent").css({
			'margin': '85px auto 0 auto'
		});
		
		}
	else {
			
	}

});//end doc ready

