function link_(){
	var txtLink = document.frmWeblink.sWeblink.value;
	window.open(txtLink);	
}

function mainmenu(){
	$("#menu-ver ul").css({display: "none"}); // Opera Fix
	$("#menu-ver li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).toggle("slow");
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

$(document).ready(function(){
	//Fix PNG					   	
	$('div#logo-1').pngFix( );
	$('div#foot-intro-m').pngFix( );
	//$('div#support').pngFix( );
	
	//mainmenu();
	
	//Facebox
	$('a[rel*=facebox]').facebox() 
	
	$('#photos').galleryView({
		frame_width: 230,
		frame_height: 140,
		overlay_color: '#222',
		overlay_text_color: 'white',
		caption_text_color: '#a70e0e',
		background_color: 'transparent',
		border: 'none',
		nav_theme: 'dark',
		easing: 'easeInOutBack',
		transition_speed: 1200,
		pause_on_hover: true,
		show_captions: true
	});
	
});
