/* #############################################################
	DonegalCDB.ie
		- jquery.scripts.js
			jQuery Scripts
############################################################# */


	// jQuery: document.ready.
	$(document).ready(function() {

		/*
		 * jQuery: Add file type icons to file links
		 * ------------------------------------------------------------------------------------------ */
		$("#content a[href$='.doc'], #content a[href$='.docx'], #content a[href$='.rft']").addClass("icon-doc");
		$("#content a[href$='.pdf']").addClass("icon-pdf");

		
		/*
		 * jQuery: Add break to every 3rd highlight itembox on homepage
		 * ---------------------------------------------------------------- */			
		$(".homepage .hilight:nth-child(3n)").after('<br class="clear" />');
		
		/*
		 * jQuery: Lightbox Popup (For Gallery / Specific Templates)
		 * ------------------------------------------------------------------------------------------ */
		$('a.image-popup').lightBox({ imageBtnClose: '../media/images/lightbox-btn-close.gif' });
		


		/*
		 * jQuery: Font Size
		 * ------------------------------------------------------------------------------------------ */
		$('.font-n').click(function() {
			$('#content').css('font-size', '1.0em')
		});
		
		$('.font-b').click(function() {
			$('#content').css('font-size', '1.3em')
		});
		
		
		/*
		 * jQuery: Set left navigation column to be full length.
		 * ---------------------------------------------------------------- */
		if($("#main").hasClass("main-col3")){
			$("#main .col1").height($("#main").height());
		}
		
		if($("#main").hasClass("main-col2-left")){
			$("#main .col1").height($("#main").height());
		}


	});



