﻿$(document).ready(function () {
    $('#nav li').hover(function () {
        $('ul', this).stop(true, true).slideDown(250);   //show
    }, function () {
        $('ul', this).stop(true, true).slideUp(250);     //hide
    });
});

function SetSelectedItem(parent, child) {
    $('#nav a').removeClass();
    if(parent != null){
		$('a#' + parent).addClass("selected");
	}
    if(child != null){
    	$('a#' + child).addClass("selected");
    }
    return true;
};

function sendEmail(id) {
	window.location.href = "mailto:info@nordicbrandcollection.com";
}
