Bootstrap hover dropdown
@media only screen and (min-width : 768px) {
.dropdown:hover .dropdown-menu {
display: block;
}
}
// To enable parent link to work, put this in JS
$('.dropdown-toggle').click(function() {
var location = $(this).attr('href');
window.location.href = location;
return false;
});