/**
 * @author Uwe Günzel
 */
$(function(){
    $("#triggers img[rel]").overlay({expose: '#333', effect: 'apple'});
    $("#triggers_landscape img[rel]").overlay({expose: '#333', effect: 'apple'}); 
	$('#navigation li').hover(
		function () {
			$(this).addClass("hover");
		}, 
		function () {
			$(this).removeClass();
		}
	)
	$('.subnavigation_header').hover(
		function () {
			$(this).removeClass();
			$(this).addClass("subnavigation_header_hover");
		}, 
		function () {
			$(this).removeClass();
			$(this).addClass("subnavigation_header");
		}
	)
});


function openWin(url,name) {
  popupWin=window.open(url,name,"resizable,scrolling=no,width=350,height=550");
}
