$(document).ready(function() {
  //if($('#logo')[0].offsetWidth == 288) {
   // $('h2.img').each(function() {
     // string = $(this).text();
     // filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
     // $(this).html('<img src="/images/' + filename + '.gif" alt="' + string + '" />');
   // });
  //}
  $('h2.home').html('<img src="/imgs/bg/try_praying_for_seven_days.jpg" alt="trypraying for seven days and see what happens!" width="400" height="80" />');
  $('h2.idea').html('<img src="/imgs/bg/try_praying_for_seven_days_white.jpg" alt="trypraying for seven days and see what happens!" width="400" height="80" />');
  $('h2.prayer_conversation').html('<img src="/imgs/bg/prayer_is_a_conversation_with_god.jpg" alt="Prayer is a conversation with God. You don\'t need to use special words or a special voice. You can pray out loud or silently.You might think of it as knocking on a door which opens into the light." width="464" height="140" />');
  $('h2.evidence').html('<img src="/imgs/bg/evidence_title.jpg" alt="Evidence" width="119" height="34" />');
  $('h2.links').html('<img src="/imgs/bg/links_title.jpg" alt="Links" width="68" height="34" />');
  $('h2.something_happened').html('<img src="/imgs/bg/something_happened_title.jpg" alt="Something happened" width="289" height="34" />');
  $('h2.page_not_found').html('<img src="/imgs/bg/404_title.jpg" alt="404 Page not found" width="266" height="34" />');
  $('h2.contact_us').html('<img src="/imgs/bg/contact_us_title.jpg" alt="Contact us" width="143" height="34" />');
  $('h2.share_your_story').html('<img src="/imgs/bg/share_your_story_title.jpg" alt="Share your story" width="219" height="34" />');
  $('h2.anyone_there').html('<img src="/imgs/bg/anyone_there_title.jpg" alt="Anyone there?" width="195" height="34" />');
  $('h2.what_a_nerve').html('<img src="/imgs/bg/what_a_nerve_title.jpg" alt="What a nerve!" width="188" height="34" />');
  $('h2.something_better').html('<img src="/imgs/bg/something_better_title.jpg" alt="Something better?" width="250" height="34" />');
  $('h2.faith').html('<img src="/imgs/bg/faith_title.jpg" alt="Faith" width="70" height="34" />');
  $('h2.credit').html('<img src="/imgs/bg/credit_title.jpg" alt="Credit" width="81" height="34" />');
  $('h2.spark').html('<img src="/imgs/bg/spark_title.jpg" alt="Spark" width="76" height="34" />');
  $('h2.awe').html('<img src="/imgs/bg/awe_title.jpg" alt="Awe" width="58" height="34" />');
  $('h2.next_steps').html('<img src="/imgs/bg/next_steps_title.jpg" alt="Next steps" width="142" height="34" />');
  

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});
	
	$('a[rel=tipsy]').tipsy({fade: true, gravity: 'w'});
	
	// add a "rel" attrib if Opera 7+
	if(window.opera) {
		if ($("a.jqbookmark").attr("rel") != ""){
			$("a.jqbookmark").attr("rel","sidebar");
		} 
	}
	$("a.jqbookmark").click(function(event){
		event.preventDefault();
		var url = this.href;
		var title = this.title;
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else if(window.opera) { // Opera 7+
			return false; // do nothing
		} else { 
			 alert('Unfortunately, this browser does not support the requested action,'
			 + ' please bookmark this page manually.');
		}
	});

});