$(document).ready(function() { var counter=0; var galleryThis="Children"; var filecount = new Object(); filecount["Children"] = "10"; filecount["Mommas"] = "11"; filecount["Family"] = "12"; $('[id^=gallery]').hide(); $('.text').hide(); $('#galleryChildrenDefault').fadeIn('slow'); $('#childrenSelect').click(function () { counter = 0; $('[id^=gallery]').hide(); galleryThis="Children"; $('#gallery' + galleryThis + 'Default').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); $('#linkGallery').css({'border-bottom-style' : 'solid', 'border-color' : '#F7E80D'}); return false; }); $('#mommasSelect').click(function () { counter = 0; $('[id^=gallery]').hide(); galleryThis="Mommas"; $('#gallery' + galleryThis + 'Default').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); $('#linkGallery').css({'border-bottom-style' : 'solid', 'border-color' : '#F7E80D'}); return false; }); $('#familySelect').click(function () { counter = 0; $('[id^=gallery]').hide(); galleryThis="Family"; $('#gallery' + galleryThis + 'Default').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); $('#linkGallery').css({'border-bottom-style' : 'solid', 'border-color' : '#F7E80D'}); return false; }); $('#nextImage').click(function () { $('[id^=gallery]').hide(); if (counter == filecount[galleryThis]) { counter=0; } $('#gallery'+ galleryThis + counter).fadeIn('slow'); counter=counter+1; return false; }); $('#prevImage').click(function () { $('[id^=gallery]').hide(); if (counter== 0) { counter= filecount[galleryThis]; } $('#gallery' + galleryThis + counter).fadeIn('slow'); counter=counter-1; return false; }); $('#linkAbout').click(function () { $('[id^=gallery]').hide(); $('.text').hide(); $('#footer').hide(); $('#aboutText').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); return false; }); $('#linkContact').click(function () { $('[id^=gallery]').hide(); $('.text').hide(); $('#footer').hide(); $('#contactText').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); return false; }); $('#linkServices').click(function () { $('[id^=gallery]').hide(); $('.text').hide(); $('#footer').hide(); $('#servicesText').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); return false; }); $('#linkGallery').click(function () { $('[id^=gallery]').hide(); $('.text').hide(); $('#footer').fadeIn('slow'); $('#galleryChildrenDefault').fadeIn('slow'); $('[id$=Select]').css({'border-bottom-style' : 'none'}); $('[id^=link]').css({'border-bottom-style' : 'none'}); $(this).css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); $('#childrenSelect').css({'border-bottom-style' : 'solid','border-color' : '#F7EB0D'}); return false; }); });