// JavaScript Document




$(document).ready(function() {



<!--SHOW / HIDE SOCIAL-->

	
$('body').click(
function(){
$("#social_wrap").hide("fast");
});


$("#socialTrigger").click(
function(event){

if (event.stopPropagation) {
 // this code is for Mozilla and Opera
 event.stopPropagation();
 }
 else if (window.event) {
 // this code is for IE
 window.event.cancelBubble = true;
 }

$("#social_wrap").slideToggle("fast");
});

$("#social_wrap").click(
function(event){

if (event.stopPropagation) {
// this code is for Mozilla and Opera
event.stopPropagation();
}
else if (window.event) {
// this code is for IE
window.event.cancelBubble = true;
}

}); 



<!--MENU SLIDE-->

	
	$(function() {
			$('#mainmekkemenu li a:not(.menu-selected a)').hover(function(){
				$(this).animate({width:'216px'},{queue:false,duration:200});
			}, function(){
				$(this).animate({width:'150px'},{queue:false,duration:200});
			});
		});


<!--KONTAKTSKJEMA-->

$("#newform").wrap('<div id="kontaktskjemaWrapper" />');


});





