
// Code for the slideshow:
function slideSwitch() {
    var $active = $('#slideshow DIV.active');

    if ( $active.length == 0 ) $active = $('#slideshow DIV:last');

    // use this to pull the divs in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow DIV:first');

    // uncomment below to pull the divs randomly
    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );


    $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 );
});

$(document).ready(function() {

	// Preload menu link images for the hover state:
	var image1 = $('<img />').attr('src', 'images/hover-left.png');
	var image2 = $('<img />').attr('src', 'images/hover-right.png');
	var image2 = $('<img />').attr('src', 'images/catalog-bottom.png');
	var image2 = $('<img />').attr('src', 'images/catalog-top.png');

	// Create the hover state for the menu:
	$('#menu ul li a:not(:eq(3))').not('.active').bind('mouseenter mouseleave', function() {
		
		$(this).toggleClass('active').parent().toggleClass('active');
	
	});
	
	$('#menu ul li.last').bind('mouseenter mouseleave', function() {
	
		$(this).toggleClass('catalog');
		$(this).find('ul').slideToggle('slow');
		
		$(this).find('a:first').click(function(event) {
			
			event.preventDefault();
		
		});
	
	});
	
});

function initialize() {
	
	var center = new google.maps.LatLng(25.9381790, -80.19944304);
	var myOptions = {zoom: 13, center: center, mapTypeId: google.maps.MapTypeId.ROADMAP};
	var map = new google.maps.Map(document.getElementById("map"), myOptions);
	var marker = new google.maps.Marker({position: center, map: map, title: 'Brastile Inc'});
	var info = new google.maps.InfoWindow({content: "<p><strong>Brastile, Inc.</strong></p><p><strong>Address:</strong> 98 NE 179 ST Miami, FL 33162</p><p><strong>Wholesale Phone:</strong> 800-979-9897</p><p><strong>General Phone:</strong> 800-881-1031</p><p><strong>Fax:</strong> 305-653-4107</p>", size: new google.maps.Size(50, 50), position: center }); 
	google.maps.event.addListener(marker, 'click', function() {
		info.open(map);
	});
	
}
