			$(document).ready(
				function(){


					$('#shoponlinelink').click(function() {
						$('#shoplinks').toggle('slow');
					});


					$('#homepagephotos').innerfade({
						speed: 2000,
						timeout: 4000,
						type: 'sequence',
						containerheight: '365px'
					});

					$('.thumbs').click(function()
					{
						var thumbid = $(this).attr('id');
						var newURL = "images/gal/" + thumbid;
						$('#featuredimage').fadeOut('fast').css('display','none').delay(300).attr('src',newURL).fadeIn(2000);
						
					});

				  $("#thumbnails").animate({
					marginLeft: "-2.6in",
					fontSize: "3em",
					borderWidth: "10px"
				  }, 8000,galright() );				


				function galleft()
				{
				  $("#thumbnails").animate({
					marginLeft: "-0.6in",
					fontSize: "3em",
					borderWidth: "10px"
				  }, 12000 );				
				};

				function galright()
				{
				  $("#thumbnails").animate({
					marginLeft: "0.6in",
					fontSize: "3em",
					borderWidth: "10px"
				  }, 8000, galleft() );				
				};

					$('#sg2').click(function()
					{
//						$('#group2').show('slow');
//						$('#group1').fadeOut(1500);
						$('#group1').animate({
							opacity: 0.0,
							marginLeft: "11.6in",
							width:"2px"
						},2500,function()
						{
								$('#group1').hide();
								$('#group2').fadeIn(2500);

						});




					});


				}
			);

