$(document).ready(function() {
						   
$('.piro_overlay,.pirobox_content').remove();
$().piroBox({
			my_speed: 800, //animation speed
			bg_alpha: 0.90, //background opacity
			scrollImage : true, // true == image follows the page, false == image remains in the same open position
			pirobox_next : 'piro_next_out', // Nav buttons -> piro_next == inside piroBox , piro_next_out == outside piroBox
			pirobox_prev : 'piro_prev_out',// Nav buttons -> piro_prev == inside piroBox , piro_prev_out == outside piroBox
			close_all : '.piro_close, .piro_overlay, .pirobox_content',// add class .piro_overlay(with comma)if you want overlay click close piroBox
			slideShow : '', // just delete slideshow between '' if you don't want it.
	});

$('.popup_hover').hover(
						
			function() {
				$('.popup').show();
			},
			
			function() {
				$('.popup').hide();
			}
);

});
