/*
 * jQuery Dropdownmenu
 * Symtech
 */
$(function () {

$('.children').each(function () {
$(this).parent().eq(0).hoverIntent({
timeout: 100,
over: function () {
var current = $('.children:eq(0)', this);
current.slideDown(100);
},
out: function () {
var current = $('.children:eq(0)', this);
current.fadeOut(200);
}
});
});

$('.children a').hover(function () {
$(this).stop(true).animate({paddingLeft: '15px'}, {speed: 100, easing: 'easeOutBack'});
}, function () {
$(this).stop(true).animate({paddingLeft: '10px'}, {speed: 100, easing: 'easeOutBounce'});
});
});

function Show_Disclaimer(action, userid) {
$('.disclaimer').slideToggle('fast', 'easeInOutBack');
}

