//engage on the page load
$(document).ready(function() {
	//trigger ajax on submit
	$('.thumbp').hover( 
		function(){
			$(this).children('.enlarge').css({ display:"block"});
		},
		function(){
			$(this).children('.enlarge').css({ display:"none"});
		}
	);


	$(".lightbox").lightbox({
		fitToScreen: true,
		imageClickClose: false,
		loopImages: true,
		disableNavbarLinks: true
	});


});