/* ----------------------------------------------------------
	title		  : Enjoy Church Framework
	created		  : 3/30/10
	last updated  : 3/30/10
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){

var adminView = $('#adminbar #toolbar').length;

if (adminView) {

}

var thisPageShowing = false;
var thisPageClicked = false;
var thisPageURL = $('#this-page a').attr('href');

$('#this-page a').click(function(){
	
	if (thisPageClicked) {
		showLinkBox();
	} else {
		
		$('#this-page').append('<span id="this-page-box"> Copy this link: <input type="text" value="'+ thisPageURL +'" /> </span>');
		thisPageClicked = true;
		showLinkBox();
	}
	
	return false;
});



function showLinkBox () {
	
	if (thisPageShowing) {
	
		$('#this-page-box').fadeOut();
		thisPageShowing = false;
		
		} else {
			
		$('#this-page-box').fadeIn();
		thisPageShowing = true;
	}

}


});//end doc ready
