Hi asareza,
the issue is css related, particularly z-index property. First try to lower z-index value in your responsiveslides.css file
#sliders{
clear: both;
margin: 10px auto;
position: relative;
z-index: 9999;
}
experiment with rough values like 8000, 7000, 6000... first.
Second option, your theme looks like modified modern core, so on a 'blind guess' in you css file locate this line (around first 100 lines or so)
header #user_menu {
display: inline;
font-size: 11px;
position: absolute;
right: 30px;
top: 0;
text-align: right;
z-index: 9999;
}
Code might be different, but the idea is to add z-index property that is in higher value then gallery.
Regards