$(function(){
	$('#window_attachment').delay(500).animate({
		left: 0+'px'
	}, 500);

    $('#carousel img:gt(0)').hide();
    setInterval(function()	{
	  $('#carousel :first-child').fadeOut(2000)
	     .next('img').fadeIn(2000)
	     .end().appendTo('#carousel');
	}, 5000);
	
	$('#video').flash('/assets/site/files/lawn-sprinkler-systems-installation-video.swf');
	
	if ( $('#google_map').length )
	{	
		var myLatlng = new google.maps.LatLng( 40.249709,-87.990146);
	    var myOptions = {
	      zoom: 16,
	      center: myLatlng,
	      mapTypeId: google.maps.MapTypeId.ROADMAP
    	}
	    var map = new google.maps.Map(document.getElementById("google_map"), myOptions);
	    
	    var marker = new google.maps.Marker({  
            position: new google.maps.LatLng(42.249709,-87.990146), 
            map: map,
            icon: '/assets/site/images/marker.png'
        }); 
        
        var infowindow = new google.maps.InfoWindow({  
		  content: '<h3 style="margin: 10px 0 0 0;padding: 0;"><a target="_blank" href="http://maps.google.com/maps/place?cid=9594467308292586790&dtab=5&sll=42.197326,-87.918322&sspn=0.10413,0.143629&ie=UTF8&ll=42.324286,-88.081512&spn=0,0&z=12">American National Sprinkler &amp; Lighting</a></h3><address>924 Turret Court Mundelein IL 60060</address><span class="office_phone">office phone: 847.556.0099</span><br/><span class="fax_phone">fax number: 847.556.0088</span>'
		});

		infowindow.open(map, marker);
		
		
		google.maps.event.addListener(marker, 'click', function() {  
		  infowindow.open(map, marker);  
		}); 
	}

	if ( $('#page.gallery ul li a').length )
	{	
		$('#page.gallery ul li a').lightBox({
			imageLoading:			'/assets/site/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/assets/site/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/assets/site/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/assets/site/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/assets/site/images/lightbox-blank.gif',	
		});
	}
});
