$(document).ready(function(){ 
	$(document).pngFix(); 
	if ($.browser.msie) {
		$('#photo img').hide();
		// var randomNumber = Math.floor( Math.random() * $('#photo img').size() );
		$('#photo img:first').show();
	} else {
		$('#photo').cycle({ 
			fx:      'fade', 
			speed:   500,
			timeout: 5000, 
			pause:  0
		});
	}
	// $('#testimonial').cycle({ 
	//     fx:    'scrollUp', 
	// 		speed:   1000,
	// 		timeout:  8000, 
	//     pause:  1 
	// });
	$('div#images a').click(function(){
    var img_src = $(this).attr('href');
    $('div#image img').attr('src', img_src);
    return false;
  });
});
