// TODO: Convert to jQuery plugin.

function global_StyleDropdowns() {
    /* Custom combo box hover behaviour */
    $(".selectBoxHolder select").each( function(){
        $(this).siblings("div").html($(this).find(":selected").text());
    });
    $(".selectBoxHolder select").hover(
      function () {$(this).parent().addClass("dropdown_over");},
      function () {$(this).parent().removeClass("dropdown_over");}
    );
     $(".selectBoxHolder select").change(function() {
      $(this).siblings("div").html($(this).find(":selected").text());
    });
    $(".selectBoxHolder select").attr('style', ' -moz-opacity:0; filter:alpha(opacity=0); opacity:0;');
}
$(document).ready(function(){
    global_StyleDropdowns();
});


