/*
	Scripts used for this theme.
	This file Requires jQuery to opperate.
*/

/* Initiates Light Box */
$(function() {
    $('img.aligncenter').parent('a').lightBox();
    $('img.alignleft').parent('a').lightBox();
    $('img.alignright').parent('a').lightBox();
    $('img.alignnone').parent('a').lightBox();
});

/* Initiates Top Panel */
$(document).ready(function(){
	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	$("a.closeBth").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});

/* Initiates the Popin Window */
$(document).ready(function(){
	$("a[rel^='prettyPopin']").prettyPopin({
		width : 300,
		height: 400,
		loader_path: 'http://www.parkerhill.org/youthportal/wp-content/themes/FamilyMin2.0/images/loader.gif'
	});
});


