// JavaScript Document

$(document).ready(function(){
	$(".tuotteet").click(function(){
		$("#tuotelista").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

	$('.slideshow').cycle({
		fx: 'fade',
		speed: 3000,
		timeout: 6000
	});
});




function initialize() {
	var latlng = new google.maps.LatLng(60.220886, 24.876321);
	var myOptions = {
		zoom: 13,
		center: latlng,
		mapTypeControl: false,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	
	var marker = new google.maps.Marker({
	  position: latlng, 
	  map: map, 
	  title:"Valimotie 25"
  });   
}


