/**
 * Simply shows new window with GoogleMap location
 */
function showGoogleMap(title, params) {
  jQuery('<iframe id="companyDetail" class="companyDetail" style="padding: 0px;" src="' + '/google.php?q='+params + '" />').dialog({
    title: title,
    autoOpen: true,
    width: 800,
    height: 400,
    modal: true,
    resizable: false,
    autoResize: true,
    overlay: {
      opacity: 0.5,
      background: "black"
    }
  }).width(800).height(400);
}

(function($) {
  //$.noConflict();
  
  jQuery('.front_banner').media( {
    width: 939,
    height: 343,
    autoplay: true
  } );

  //jQuery( "#dialog-modal:ui-dialog").dialog("destroy");
  jQuery("#trigger_login").click(function(){
    jQuery("#dialog-modal").dialog({
      height: 320,
      width: 390,
      modal: true,
      resizable: false,
      draggable: false
    });
    jQuery("div.ui-dialog-titlebar").remove();
    jQuery("#dialog-modal .close").click(function(){
      jQuery("#dialog-modal").dialog('close');
    });
  });

  // "Get a quote" section
  jQuery("#dm_quote_quote_form_finish").change(function(){
    jQuery('p.other').toggle(jQuery('#dm_quote_quote_form_finish option:selected').val() == 'Other');
  });
  jQuery('p.other').toggle(jQuery('#dm_quote_quote_form_finish option:selected').val() == 'Other');



  /*************************** LOCATIONS ********************************/
  jQuery('span.dm_current').parent().addClass('selected');
})(jQuery);



