$(window).load(function()
{
	//this is intended to wait for all the images to load before running the slideshow
	init_slideshow();
});

jQuery(document).ready(function() {
	    jQuery('a[rel*=facebox]').facebox();
 });

init_slideshow = function()
{
	$('#slides').cycle({
		fx:'fade',
		timeout:8000,
		pager:'#slide_navigation'
	});
}
