// JavaScript Document jQuery(document).ready(function(){ // Enable fancy box jQuery(".photos a").attr({'rel':'photo_group'}); jQuery(".photos a").fancybox({ 'overlayShow' : true, 'overlayOpacity': 0.75, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'titlePosition' : 'inside', 'cyclic' : true, 'titleFormat' : formatTitle, 'overlayColor' : '#000', 'changeSpeed' : 150 }); // Show read more jQuery('.moreInfo').before('
'); // Expand/Shrink when click read more jQuery('.readMore').click(function(){ if(jQuery(this).attr('alt') == 'Read More'){ jQuery(this).text('Show Less'); jQuery(this).attr({'alt':'Show Less'}); restoreHeight(jQuery(this).parent().next(), 500); }else{ jQuery(this).text('Read More'); jQuery(this).attr({'alt':'Read More'}); jQuery(this).parent().next().animate({'height':'0'}, 500); } return false; }); }); function formatTitle(title, currentArray, currentIndex, currentOpts) { var imgIcon = jQuery('a[href="' + currentArray[currentIndex] + '"]').attr('icon'); if(imgIcon != undefined && imgIcon != ''){ imgIcon = '