var isOpen = false
var isOpen2 = false

$(document).ready(function(){

		$('#banner').children('span').hover(function(){
		$(this).children('#panel').stop().fadeTo(500, 0.85);
		},function(){
		$(this).children('#panel').stop().fadeTo(500, 0);
	});

        $('.photo').each(function() {
        $(this).hover(function() {
            $(this).stop().animate({ opacity: .85 }, 250);
        },
       function() {
           $(this).stop().animate({ opacity: 1.0}, 500);
       });
    });
	
		$('.inner').children('span.left').click(function(){
			if (isOpen)
			 {
				$('.inner').children('#copyright').slideUp('250', function() {
					isOpen = false
					$('.inner').children('span.left').text("Copyright © 2011 Bergmann's Cleaning")
	
					 });
			}
			else
			{
				$('.inner').children('#copyright').slideDown('250', function() {
					isOpen = true
					$('.inner').children('span.left').text("Close Copyright Information")

					 });
			}
		});

		});

//		$('#banner').children('span').hover(function(){
//		$(this).children('#panel').stop().animate({left: 0},'slow');;
//		},function(){
//		$(this).children('#panel').stop().animate({left: -250},'slow');
//	});
