$(document).ready(function(){	

	$('#gallery').galleryView({
		panel_width: 670,
		panel_height: 450,
		frame_width: 100,
		frame_height: 100,
		overlay_width: 300,
		transition_speed: 350,
		easing: 'easeInOutQuad',
		transition_interval: 0
	});
	
// Selectfield Start ----------------------------------------
	$("ul.select > li.parent").click(function(){
		$(this).children("ul").toggle();
	});	
	$("ul.value > li:last-child").css("border", "none"); 
// Selectfield End ----------------------------------------

// Navigation Start ----------------------------------------
	$("ul#navigation > li").mouseenter(function(){
			//$(this).children("span").toggle();
			//$(this).children("ul").toggle();
			
			$(this).children("span").show().addClass('open');
			$(this).children("ul").show().addClass('open');
	});
	
	$("ul#navigation > li").mouseleave(function(){
			//$(this).children("span").toggle();
			//$(this).children("ul").toggle();
			if ($(this).children("span").hasClass('open')) {
				
				$(this).children("span").hide().removeClass('open');
				$(this).children("ul").hide().removeClass('open');
			}
	});	
	$("ul#navigation > li > ul > li:last-child").css("border", "none"); 
// Navigation End ----------------------------------------	

	if ($('div#topic').length > 1) {
		$('div#topic:first').remove();
	}

});	
