$(document).ready(function() {


		$("#designere").accordion({
			autoHeight: false,
			navigation: false,
			collapsible: true
		});


	$('#faceshare, .qtrans_flag_no, .qtrans_flag_en').css({opacity: '0.5'});
	$('#faceshare, .qtrans_flag_no, .qtrans_flag_en').hover(function(event){
		$(this).stop(true, true).animate({opacity: '1'}, {duration: 600})
		},function(){
		$(this).stop(true, true).animate({opacity: '0.5'}, {duration: 400})
	});





	$('ul#navbar-content ul').css({display: 'none'}); // Opera Fix
	$('ul#navbar-content li').hover(function(event){
		$(this).find('ul:first').stop(true, true).animate({height: 'toggle'}, {duration: 600, easing: 'easeOutBack'})
		},function(){
		$(this).find('ul:first').stop(true, true).animate({height: 'toggle'}, {duration: 400, easing: 'easeInBack'})
	});




$('html, body').animate({
scrollTop: $("#galleri").offset().top
}, 1000);











});