$(document).ready(function() {
	$().piroBox({
			my_speed: 600, //animation speed
			bg_alpha: 0.8, //background opacity
			radius: 10, //caption rounded corner
			scrollImage : false, // true == image follows the page, false == image remains in the same open position
			pirobox_next : 'piro_next', // Nav buttons -> piro_next == inside piroBox , piro_next_out == outside piroBox
			pirobox_prev : 'piro_prev',// Nav buttons -> piro_prev == inside piroBox , piro_prev_out == outside piroBox
			close_all : '.piro_close,',// add class .piro_overlay(with comma)if you want overlay click close piroBox
			slideShow : 'slideshow', // just delete slideshow between '' if you don't want it.
			slideSpeed : 5 //slideshow duration in seconds(3 to 6 Recommended)
	});
});

$(document).ready(function(){
	$('#moreLink').click(function () {
		$('#moreBox').slideToggle(250);
	});
});

$(document).ready(function(){
	$('img.rollover').hover(
	 function() {this.src = this.src.replace('_off','_on');}, function() {this.src = this.src.replace('_on','_off');});
});
