// JavaScript Document



$(document).ready(function() {
	
	
$("#mainmekkemenu li ul").wrap("<div class='submenu'/>");

$("#social_wrap").appendTo('#socialTriggerWrapper');

<!--SHOW / HIDE SOCIAL-->
	
$("#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;
}

}); 
	
});
