function initialize() {
	// Connect Latitude and Longitude
	var latlng = new google.maps.LatLng(30.433490,-91.024302);
	
	// Map options
	var myOptions = {
	    zoom: 15,
	    center: latlng,
	    mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	
	// Where the map should be displayed
	map = new google.maps.Map(document.getElementById("los_map"), myOptions);
	
	// Adding a marker
	var marker = new google.maps.Marker({
	    position: latlng,
	    map: map, 
	    title:"Connect Real Estate Group"
	});
	
	// Creating an InfoWindow
	var infowindow = new google.maps.InfoWindow({
	    content: '<h2>Connect Real Estate Group</h2><p><a href="http://maps.google.com/maps?q=2929+Millerville+Rd,+Ste+1B&client=safari&oe=UTF-8&hnear=2929+Millerville+Rd,+Baton+Rouge,+Louisiana+70816&gl=us&t=m&z=16&vpsrc=0">Get Directions</a></p>'
	});
	
	// Adding a click event to the marker
	google.maps.event.addListener(marker, 'click', function() {
		// Opening the InfoWindow
	    infowindow.open(map, marker);
	});
}
jQuery(document).ready(function() {
	var thisHref = '';
	jQuery('.features > div:not(:first)').hide();
	jQuery('.features > div:first').addClass('current');
	jQuery('.features-nav a').click(function(){
		jQuery('.features-nav li').removeClass('current');
		jQuery(this).parent().addClass('current');
		return false;
	});
	jQuery('.features-nav a').click(function(){
		thisHref = jQuery(this).attr('href');
	    jQuery('div.current').hide(0, function(){
	    	jQuery(thisHref).show(0, function(){jQuery(this).addClass('current');});
	    });
	    return false;
	});
	/* This is basic - uses default settings */
	
	$("#find-your-home a").fancybox({
		'hideOnContentClick': true,
		'width'				: 600,
		'height'			: 609,
		'scrolling'			: 'no',
		'type'				: 'iframe'
	});
	
	/* Using custom settings */
	
	$("#photos a, #available-homes a").fancybox({
		'hideOnContentClick'	: true,
		'centerOnScroll'		: true,
		'titleShow'				: false
	});
	
	//Homepage Slideshow
    jQuery('#slides').jcarousel({
        auto: 3.5,
        scroll: 1,
        animation: 800,
        wrap: 'last',
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});
