I would like to get the currently german time in JavaScript. Normally its GMT+1 but german time consists of the winter time and the summer time. In the summer time we are 1 hour ahead.
var now = new Date();
var hour = now.getUTCHours() + 1; // it works, but not by the summer-time