$(function() {
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	 
 	$('a.floorplan').click(function(){
 		window.open(this.href);
 		return false;
 	});
 	
    $("a[rel^='prettyPhoto']").prettyPhoto({
        animationSpeed: 'normal', /* fast/slow/normal */
        padding: 40, /* padding for each side of the picture */
        opacity: 0.35, /* Value betwee 0 and 1 */
        showTitle: false, /* true/false */
        allowresize: true, /* true/false */
        counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
        theme: 'dark_square', /* light_rounded / dark_rounded / light_square / dark_square */
        callback: function(){}
    });
});
function initialize() {
	var latlng = new google.maps.LatLng(46.141513,7.237716);
	var settings = {
	zoom: 15,
	center: latlng,
	mapTypeControl: false,
	mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
	navigationControl: true,
	navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN}, // ZOOM_PAN, SMALL
	mapTypeId: google.maps.MapTypeId.ROADMAP
};


var map = new google.maps.Map(document.getElementById("map"), settings);


var companyLogo = new google.maps.MarkerImage('images/logo.png',
	new google.maps.Size(56,58),
	new google.maps.Point(0,0),
	new google.maps.Point(28,58)
);

//var companyShadow = new google.maps.MarkerImage('images/logo_shadow.png',
//new google.maps.Size(130,50),
//new google.maps.Point(0,0),
//new google.maps.Point(65, 50)
//);

var companyPos = new google.maps.LatLng(46.143864,7.233596);
var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo
	//shadow: companyShadow,
	/* title:"Company Title" */
});

}
