var _lang = 'en';
var language = 'en';
$(function() { // on ready

	// nav
	if ($.fn.superfish) {
		$("ul.nav").superfish();
	}
	
	$('img.pic-hover').hover(function() {
		$(this).parent().parent().find('a.caption').addClass('hover');
	}, function() {
		$(this).parent().parent().find('a.caption').removeClass('hover'); 
	});

});


function launchwin(winurl,winname,winfeatures)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);
}
