$(document).ready(function() {
		
		$(document).cheatCode();	
		
		$("a[title='hartgers']").colorbox();
		
		$('.fade').dwFadingLinks({
			color: '#000000',
			duration: 700
		});
		$('.fadew').dwFadingLinks({
			color: '#ffffff',
			duration: 700
		});
		
		$.fn.cycle.defaults.timeout = 3000;
		$('#slide').before('<div id="slide" class="slideshow">').cycle({
        fx:     'fade',
        pager:  '.slideshownav'
    	});
		
		$('a.lightbox').lightBox();
		
		/*$('#slide').cycle('fade');*/
		$('img.reflect').each(function(){
				$(this).load( 
					function(){ 
						$(this).reflect({height: 0.1, opacity: 0.4} );
					} 
				);
			});
});

function changeBigPhoto (src) {
	
	document.getElementById('big_photo').src = src;
	//Reflection.add(document.getElementById('big_photo'), { height: 1/7, opacity: 1/2 });
}
function changeBigPhotoLink (href) {
	
	document.getElementById('big_photo_link').href = href;
}

		

