// Photo Gallery
jQuery(document).ready(function() {
    jQuery('#photoGalley').jcarousel();
});

jQuery(document).ready(function() {
	jQuery('ul#photoGalley img').each(function() {
		jQuery(this).hover(function() {
			jQuery(this).stop().animate({ opacity: 1.0 }, 500);
		},
		function() {
			jQuery(this).stop().animate({ opacity: 0.75 }, 500);
		});
	});
})
