$(document).ready(function(){

	//Link Images
	
	$("a[@href$=pdf]").addClass("pdf");
	$("a[@href$=zip]").addClass("zip");
	$("a[@href$=psd]").addClass("psd");
	
	//gallery
	
	$('#recentPics a').lightBox(); // Select all links in object with gallery ID
	
	//Panel Hides

	$("#primary .pnlBody:gt(0)").hide();
	
	$(".pnlTitle").click(function(){
		$(this).next(".pnlBody").slideToggle(500)
		return false;
		});
	
	
});
