$(document).ready(function()
{ 
/* On-page Load Fucntions */


$('.showBlog').click(
	function(event) {
    	$('.lightbox').fadeIn("fast");
	}
);	
$('.overlay').click(
	function(event) {
    	$('.lightbox').fadeOut("fast");
	}
);	
$('.closeBlog').click(
	function(event) {
    	$('.lightbox').fadeOut("fast");
	}
);	

});

