/*
 * All JavaScript to be fired when the DOM is ready
 */
$(document).ready(function() {

	/*
	 * Gallery image effects
	 */
	$(".photo-gallery li,.lb a").easyGalleryFocus();

	/*
	 * Opacity adjustments for logo hovering
	 */
	$("#logo img").hover(function(){
		$(this).stop().animate({
			"opacity": 0.7
		},1250);
	},function(){
		$(this).stop().animate({
			"opacity": 1
		},1250);
	});

	/*
	 * Lightbox for gallery photos
	 */
	$(".lb a").lightBox({
			imageLoading: '/images/lightbox-ico-loading.gif',
			imageBtnClose: '/images/lightbox-btn-close.gif',
			imageBtnPrev: '/images/lightbox-btn-prev.gif',
			imageBtnNext: '/images/lightbox-btn-next.gif'
		});

	/*
	 * Technically valid workaround for target="_blank"
	 */
	$('[rel="external"],form[name=ccoptin]').attr('target', '_blank');

});
