/*!
 * Photo Scrollbox
 * http://bnj.com/
 *
 * Copyright (c) 2009 Stephen Kozik
 *
 * Date: 2009-12-06
 * Revision: 1
 */

currentscrollbox =1;	

function swapphoto(swapnum) {
	for (i=1; i<=maxshowphotos; i++) {
		var itemtohide = "mediumphoto"+i;
		document.getElementById(itemtohide).style.display = 'none'; 	
	}
		var itemtoshow = "mediumphoto"+swapnum;
		document.getElementById(itemtoshow).style.display = 'block'; 	
}

function scrollboxright() {
	if (currentscrollbox<(maxshowphotos-2)) {
		var itemtoscroll = "#scrollboxitem"+currentscrollbox;
		$(itemtoscroll).animate({ marginLeft: "-115px"}, 1000);
		currentscrollbox++;
	}
}
function scrollboxleft() {
	if (currentscrollbox>1) {
	 	currentscrollbox--;
		var itemtoscroll = "#scrollboxitem"+currentscrollbox;
		$(itemtoscroll).animate({ marginLeft: "6px"}, 1000);
	}
}




$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='photoset']").colorbox();
	
});

$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='forms']").colorbox({width:"65%", height:"91%", iframe:true});
	
});

$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='brochure']").colorbox({width:"900", height:"400", iframe:true});
	
});
