$(document).ready(function(){
	
	// Sidebar - Spoltight Publications: Create large clickable areas, using the link from the href
	$('.sidebar-link-wrapper').click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	})
	
	// Article-index: Create large clickable areas, using the link from the href
	$('ul.article-index li').click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	})
	
	// Book-index: Create large clickable areas, using the link from the href
	$('ul.bookindex li').click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	})
	
	// Homepage Spotlights: Create large clickable areas, using the link from the href
	$('ul.homepage-spotlights li').click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	})
	
	// FAQ, show/hide contents of questions
	$('.reveal').click(function(){
		$(this).parent().parent().children('.revealed').slideToggle();
	})
	
	// Launch Sufi Radio audio player - Music
	$('.launch-player-music').click(function(){
		window.open("http://www.nimatullahi.org/audio/music/player/player-music.php", "new", "width=700,height=320,toolbar=no,resizable=no,menubar=no,location=no,status=no,directories=no");
	})
	
	// Launch Sufi Radio audio player - Talks
	$('.launch-player-talks').click(function(){
		window.open("http://www.nimatullahi.org/audio/talks/player/player-talks.php", "new", "width=700,height=320,toolbar=no,resizable=no,menubar=no,location=no,status=no,directories=no");
	})
	
	
});

