




//Description and magnify Overlays////////////////////////////////
		$(document).ready(function(){
				//Add Magnify span
				$(".zoom").append("<span>Embiggen</span>");
				//Full Caption Sliding (Hidden to Visible)
				$("div.box").hover(function(){
					//Fadein Magnify
					$(".zoom span", this).fadeIn();
					//Animate description box
					$(".description", this).stop().animate({left:'0px'},{queue:false,duration:400});
				}, function() {
					//Fadeout Magnify
					$(".zoom span", this).fadeOut();
					//Animate description box
					$(".description", this).stop().animate({left:'-100%'},{queue:false,duration:260});
				});
			});
//Description and magnify Overlays///////////////////////////////


     $(document).ready(function() {
	$().piroBox({
			my_speed: 400, //animation speed
			bg_alpha: 0.6, //background opacity
			slideShow : true, // true == slideshow on, false == slideshow off
			slideSpeed : 6, //slideshow duration in seconds(3 to 6 Recommended)
			close_all : '.piro_close,.piro_overlay'// add class .piro_overlay(with comma)if you want overlay click close piroBox

	});
});

