$w . onReady ( function () {
$w ( '#RollerShadesBtn' ). onMouseIn (( event ) => {
$w ( "#SolarShadesBox" ). show ();
});
$w ( '#SolarShadesBox' ). onMouseIn (( event ) => {
$w ( "#SolarShadesBox" ). show ();
});
$w ( '#RollerShadesBtn' ). onMouseOut (( event ) => {
$w ( "#SolarShadesBox" ). hide ();
});
$w ( '#SolarShadesBox' ). onMouseOut (( event ) => {
$w ( "#SolarShadesBox" ). hide ();
});
});