			/* Start Jquery Setup & Selectors */
		
			$(document).ready(function(){
				$("span.jqone").show();
				$("span.jqtwo").hide();
				$("span.jqthree").hide();
				$("span.jqlocatortwo, span.jqlocatorthree, div.jqopactwo, div.jqopacthree, div.jqsstwo, div.jqssthree").hide();
				$("div.jqselector > div:eq(2)").click(function() {
					$("div.main > span").hide();
					$("span.jqone").show();
					$("div.jqbuttonon").addClass("jqbutton");
					$("div.jqbuttonon").removeClass("jqbuttonon");
					$(this).removeClass("jqbutton");
					$(this).addClass("jqbuttonon");
					$("span.jqlocatorone, div.jqopacone, div.jqssone").show();
					$("span.jqlocatortwo, span.jqlocatorthree, div.jqopactwo, div.jqopacthree, div.jqssthree, div.jqsstwo").hide();
				});
				$("div.jqselector > div:eq(1)").click(function() {
					$("div.main > span").hide();
					$("span.jqtwo").show();
					$("div.jqbuttonon").addClass("jqbutton");
					$("div.jqbuttonon").removeClass("jqbuttonon");
					$(this).removeClass("jqbutton");
					$(this).addClass("jqbuttonon");
					$("span.jqlocatortwo, div.jqopactwo, div.jqsstwo").show();
					$("span.jqlocatorone, span.jqlocatorthree, div.jqopacthree, div.jqopacone, div.jqssthree, div.jqssone").hide();
				});
				$("div.jqselector > div:eq(0)").click(function() {
					$("div.main > span").hide();
					$("span.jqthree").show();
					$("div.jqbuttonon").addClass("jqbutton");
					$("div.jqbuttonon").removeClass("jqbuttonon");
					$(this).removeClass("jqbutton");
					$(this).addClass("jqbuttonon");
					$("span.jqlocatorthree, div.jqopacthree, div.jqssthree").show();
					$("span.jqlocatortwo, span.jqlocatorone, div.jqopactwo, div.jqopacone, div.jqsstwo, div.jqssone").hide();
				});
			});
			
			/* Start Slideshow Effects */
			
			function slideSwitch() {				
				var $active = $('#jqslideshow img.active');
				if ( $active.length == 0 ) $active = $('#jqslideshow img:last');
				var $next =  $active.next().length ? $active.next()
					: $('#jqslideshow img:first');
					$active.addClass('last-active');
					$next.css({opacity: 0.0})
					.addClass('active')
					.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
			}

			$(function() {
				setInterval( "slideSwitch()", 5000 );
			});
			
			function slideSwitchtwo() {				
				var $active = $('#jqslideshowtwo img.active');
				if ( $active.length == 0 ) $active = $('#jqslideshowtwo img:last');
				var $next =  $active.next().length ? $active.next()
					: $('#jqslideshowtwo img:first');
					$active.addClass('last-active');
					$next.css({opacity: 0.0})
					.addClass('active')
					.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
			}

			$(function() {
				setInterval( "slideSwitchtwo()", 5000 );
			});
			
						function slideSwitchthree() {				
				var $active = $('#jqslideshowthree img.active');
				if ( $active.length == 0 ) $active = $('#jqslideshowthree img:last');
				var $next =  $active.next().length ? $active.next()
					: $('#jqslideshowthree img:first');
					$active.addClass('last-active');
					$next.css({opacity: 0.0})
					.addClass('active')
					.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
			}

			$(function() {
				setInterval( "slideSwitchthree()", 5000 );
			});