 jQuery.fn.center = function () {
	     this.css("position","absolute");     
		 this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");     
		 this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");     
		 return this;
} 
$(document).ready(function() {
	$(".logout").click(function(){
		window.location= "login.php?logout=yes";
	})
	$(".viewAdmin").click(function(){
		window.location= "admin.php";
	})
	$(".edit_me").click(function(){
		node=$(this).attr("name");
		window.location= "admin.php?q=edit&id="+node;
	})
	$(".piece_image").click(function(){
		image=$(this).attr("src");
		node=$(this).attr("name");
		$("#popup img").attr("src",image);
		$("#popup a").attr("href",node);
		$("#popup").center();
		$("#popup").fadeIn();
	})
	$("#popup img").click(function(){
		$("#popup").fadeOut();
	})
	$(".slider_head").click(function(){
		if ($(this).next(".slider").is(':visible')){
			$(this).next(".slider").slideUp();
		}else{
			$(this).next(".slider").slideDown();
		}
	})
})
