﻿// JScript File

$(document).ready(function(){ 
    $(document).pngFix();
    
    $("<span style=color:#FF9600>·</span>").replaceAll("·");
    
    $(".frontBox").hover(
      function () {
        $(this).addClass("frontBoxOver");
      }, 
      function () {
        $(this).removeClass("frontBoxOver");
        $(this).addClass("frontBox");
      }
    );
    
    $("#whatIsDiv").click(function(){
        window.location = 'about.aspx';
    });
    
    $("#servicesDiv").click(function(){
        window.location = 'services.aspx';
    });
    
    $("#quoteDiv").click(function(){
        window.location = 'quote.aspx';
    });
    
    $(".portItem").click(function() {
        $(this).children(".portInfo").slideToggle();
    });
    
    $(".portItem:first").children(".portInfo").slideToggle();
});