Image rotator problem on Dreamweaver site

Hi I am running into a problem on my main index site. If you look at the image rotator on the very top of the page http://oldfortestates.com/index.htm via firefox (only that browser) you will see that there is a flashback of some of the images before it moves to the next image. I tried everything and can't figure it out. However if you look at the page http://oldfortestates.com/index_test.htm where I took out the info of the body of the page you will see that it is working fine and there is no flashback, however as soon as I include the information in the body the images once again do the same flashback. I need to find a way to have the full page without the flashback. Any assistance would be appreciated.

I realized that it is the exfeat addon which is causing the problem below. Once it is on the page it interfers with the image rotator to the top. There must be a way for it to work without the interference.

Similar Messages

  • Image Rotation Problem in LR 3.2RC

    Anyone else having an issue with image rotation in Lightroom 3.2C?
    Here's what happens:
    I import images from my card. There are a combination of images taken horizontally and vertically. The vertical images come in sideways (horizontally). This is no big deal: maybe the cameras I was using in this case (Olympus E-PL1 and Panasonic GF1) don't properly mark the orientation.
    So, in Grid view,  I select one of the improperly orientated images and click the "Rotate Photo Left" arrow in the toolbar. Here's where it gets weird. Instead of rotating the image 90-degrees counter clockwise, the thumbnail rotates about 45-degrees, so now it's crooked in Grid view. However, on my second monitor, the image now looks properly orientated.
    I've tried rotating using the menu (Photo menu / Rotate Left) and got the same result. If I repeatedly rotate, it ends up in all sorts of odd positions in grid mode.
    What's up with this? Is it just me?
    Alan
    PhotoCitizen.com

    Restarted Lightroom and all looks good now. I'll be interested to see if the problem returns next time I import images.
    UPDATE: I spoke too soon. Closed LR3 and opened it again. No, the cockeyed thumbnails are not saved at their odd angles. But they still don't match the image shown on my 2nd monitor (or on my main monitor either if I go to Loupe View). The Grid view image might show the vertical image lying on its side (horizontal), even though the 2nd monitor shows it in the correct orientation.
    This happens with horizontal images too if I try to rotate them - something I tried just now but wouldn't normally need to do.
    Trying to rotate the thumbnail again results in the cockeyed thumbnail. If I then CLICK on that thumbnail, it straightens out, but never in the correct orientation. Here's a screen grab:
    Something seriously wrong here. Something that NEVER happend in Lightroom 3 until I installed version 3.2RC. So, I doubt that it's a video card problem - looks like a bug to me.
    Alan
    PhotoCitizen.com

  • Photoshop CS5 Image Rotation Problem

    Hi:
    I have recently found out that I am having a problem with image rotation in CS5.  If I have a Background layer and jump the layer to duplicate it and then set the jumped layer to Flip Horizontal both the jumped layer AND the Background layer are flipped horizontally as if they are linked in some way.  The only work around that I could come up with was to duplicate the document, flip the layer in the duplicate and then combine the documents.  It works but what a pain.  As anybody else experienced this problem?
    Herman R.

    Charles:
    My Background was locked and only the jumped layer was selected. 
    However, the "problem" grows more intriguing.  I tried using Duplicate Layer rather Command J (is there a difference between these two??) and was pleasantly surprised to find that the problem disappeared!!  I then went back to Command J and still had the same problem.  To make a long story short, I went back and forth several time and then even the jumped layer worked as it should.  It was as if it had "learned" the correct behavior!  I tested it now ony several documents and all is fine.  Does this make any sense to you?
    Herman R.

  • Image Link Problem with Dreamweaver CS4?

    On my website, I have several images that link to other parts on my website. These work no problem when I preview the site, but after I test the links, the images that had those links have purple outlines that really clash with my website's design. Will users see this if they click on my links, and then return to the page? I'm using CS4 right now, and never recalled having this issue come up when using MX. Thanks for the help.

    I got stuck on this one too - not realising that Dreamweaver automatically palces a border on every image link - but the simplest way I found was to have my "Properties" panel showing on the bottom and input 0 into the "Border" box. By having this panel open you can see if you have accidently applied any styles to the image, where it links to, Image size attributes and the Image name.

  • How do new images get placed in Dreamweaver site image folder?

    Hi,
    I'm still new to this and my boss has dumped this chaotic
    site onto me to fix. I'm new to Dreamweaver (MX 2004) although I
    did take a course in it back in May and haven't done anything to
    practice on since! This is a very different system than the kind i
    used to do and used to being able to place new images into the site
    image folder but haven't figured out how to do this after
    researching all instructions, help menu and book, etc. What am i
    missing here?

    > and used to being able to place new images into the
    > site image folder but haven't figured out how to do this
    One way- place them in the folder you want manually from the
    desktop. Open
    the folder and put them there.
    Another way- within dreamweaver.
    Insert the image. If it's not already within this site
    folder, dw will put
    up a dialog box asking you want to copy the image to the site
    folder.
    If you've picked a default images folder in this site
    definition, dw will
    copy it. If you haven't picked a default images folder,
    you'll be shown a
    "browse to file" dialog box and you manually pick where to
    save the file.
    (unless you've already put a check in the "never show me
    this again")
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Image Rotate Problem?

    I'm using Jimi Rotate class to rotate the image. It is rotating the image. But what happens black lines are added around the image.
    How to solve this problem?
    public Image rotateImage(BufferedImage bi, int pos)
            ImageProducer source = bi.getSource();
            Rotate rot;
            if(pos == 0)
                rot = new Rotate(90);
            else
                rot = new Rotate(-90);
            FilteredImageSource fis = new FilteredImageSource(source, rot);
            return new JimiCanvas().createImage(fis);
    }

    I have tried with another code also for rotate image. It is working properly. But what happens while using remote desktop connection and using this application to rotate the image. The Image is changing into Blue Color. Sometime In single PC itself I'm getting this problem.
    How to solve this problem.
    public Image rotateImage(BufferedImage bi, int pos)
            new_bi = new BufferedImage(bi.getHeight(),bi.getWidth(),bi.SCALE_FAST);
            Graphics2D g2d = new_bi.createGraphics();
            AffineTransform at = g2d.getTransform();
            AffineTransform rotation = new AffineTransform();
            if(pos == 0)
                rotation.rotate( (-1) * Math.PI / 2, bi.getWidth() / 2, bi.getHeight() / 2);
            else
                rotation.rotate( Math.PI / 2, bi.getWidth() / 2, bi.getHeight() / 2);
            g2d.transform(rotation);
            if(pos == 0)
                g2d.drawImage( bi, null, (bi.getWidth() / 2 - new_bi.getWidth() / 2 ) * -1, (bi.getHeight() / 2 - new_bi.getHeight() / 2));
            else
                g2d.drawImage( bi, null, (bi.getWidth() / 2 - new_bi.getWidth() / 2 ), (bi.getHeight() / 2 - new_bi.getHeight() / 2) * -1);
            g2d.setTransform(at);
            return new JimiCanvas().createImage(new_bi.getSource());
    }

  • Contact Sheet image rotation problem

    When using the Contact Sheet f
    unction of CS4, some of the images are rotated 180
    degrees on the sheet.  Some of them are right side up and some are rotate
    d.  Changing the "rotate for best fit" checkbox has no
    affect.
    Has anyone else had
    this problem??
    Thanks.
    Jim

    Hi captianbob,
    Make sure that you have not selecte primary only (look in the edit menu, can be toggle with the S key)
    You can promote or demote images in the stack, see the Stacks menu.
    You can always create an album or smart album and use that to play you slideshow.
    Just an advice, if you have multible questions you should make seperate posts.
    Best regards - Per.

  • Image Space Problems with Dreamweaver 8

    I am having a bad issue with Dreamweaver 8 on Mac OS 10.4.8.
    It concerns images that have an assigned horizontal spacer of say,
    4 pixels. The images have a CSS class assigned to them that adds a
    5 pixel black border. In previous Dreamweaver versions, and within
    the Mac Browsers (Safari, Netscape, etc.), the black (CSS class)
    border is correctly along all four edges of the image. However,
    when viewed in Dreamweaver 8, the black border is now 5 pixels away
    from the image's verticle edges.

    I have tried this in DW8 on the Mac, and I'm not able to
    reproduce it.
    There must be some horizontal padding inheriting into that
    <img> to get what
    you are seeing.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:emdrfc$l59$[email protected]..
    > Upload the page and post a link to it, please.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "AcadiaMagic" <[email protected]> wrote
    in message
    > news:emct51$i19$[email protected]..
    >> Hi, Murray. I've uploaded a screen capture of what
    it looks like. It is
    >> here:
    >>
    >>
    http://www.acadiamagic.com/a/sample.jpg
    >>
    >> The following is the only CSS code that should
    impact the image:
    >>
    >> .border3 {
    >> border: 3px solid #000000;
    >> }
    >>
    >> It does not happen in Dreamweaver MX 2004 or in the
    browsers on my Mac
    >> with OS
    >> 10.4.8 - only in Dreamweaver 8.
    >>
    >> Thanks
    >>
    >
    >

  • Problem with dreamweaver site on internet explorer

    Hi all
    Help required! i have a website up and running www.villaneptunecyprus.co.uk which works fine in most browsers apart from Internet Explorer!
    If you have a look you will see a slider banner picture come across the screen  which then slides out to be replaced by another and so on. However in IE the first banner slides in and then out and then all the text disappears and the website , for want of a better word, just stops. You can still navigate to other pages in the site but the same thing happens eventually.
    Just cannot quite see what is going wrong.....any suggestions gratefully received!!
    Regards
    Neil

    Code errors are responsible for 90% of browser display issues.
    Start by fixing your code.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fpromanageidaho.com%2F
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Embed Adobe Bridge CS5.5 web image gallery into Dreamweaver site

    Please help! I have been reading forums and trying to find the answers to my problem for days! I have created an image gallery in adobe bridge cs5.5 and have used an iframe to embed the gallery into my dreamweaver site. When I preview my site the gallery works, but after I've uploaded the gallery to the server the gallery no longer works. I have read multiple adobe forums with no success. Please help! Thanks!

    I'm not sure I completely understand your problem, because linking to a Lightroom gallery is actually very simple.
    Design your Lightroom gallery and upload it to your server. Just do it directly from LR. Let's suppose you have uploaded it into [your webroot folder]/galleries/test/.
    Don't rename any of the index files.
    Check it has actually worked, by visiting http://celestialapple.zxq.net/galleries/test/index.html with your browser.
    Create a link to the gallery on your home page. The source code for the link is <a href="/galleries/test/index.html">Other Photoshop gallery</a>
    And that's it already.
    Cheers,
    Michael

  • Edge animation-images are not displayed on my dreamweaver-site

    Hello, could someone please help me?
    My animation, which is inserted into  a Dreamweaver-website, shows no pictures - only text elements when you open the page in the browser. In the live view and preview in the browser the images are displayed but on the Website they are not display. I have already set the file permissions to 777 - but it did not help.
    When i open the Animation without my Dreamweaver-site - only the Animation in the browser the Images are displayed correctly.

    I've just found the error! One file was not uploaded... sorry !  Anyway thanks for the quick reply!!!

  • Problem with image rotation. Images are distorted.

    Here is the story:
    I import images. Some of the need to be rotated because the camera not always records rotation properly. So I rotate them in LR. Everything is fine so far. But when I want to edit the rotated file in PS (CS2) problems arise.
    Either LR does not send information about image rotation or PS does not recognize it. The image opens in PS as it was initially shot so in order to work on it properly I need to rotate it in PS again. When I return to LR the thumbnail looks fine but the develop module stretches or distorts the image.
    As far as I remember I dodn't have such a problem a week ago so what could be the cause?

    I am also having this problem, again using Jpegs. If I Right click in LR and choose "Edit Original" in Photoshop CS, the photo appears correctly oriented in PS. I edit it (in this case using PTLens to remove distortion and then cropping) and save the file.
    LR now displays it correctly in the Library module, but stretched in the Develop Module. The edges of the image and the grey pinstripe around it also flash grey a couple of times a second while displaying stretched.
    I tried reading metadata from file, and this deleted all my LR edits (not just ratings etc) to the file but didn't fix the problem.
    Any more ideas? This doesn't happen if I edit a copy of the original file, but don't really want to duplicate all images shot on a wide angle lens. Is this something in the way PS CS re-writes the orientation information to a jpeg, or how LR reads it?
    Sam

  • Problems after image rotating!

    Hi all!
    I'm having problems with image rotating..well actually drawing after image rotating.
    After I've rotate an image and have painted it, I'll have to paint another image. Problem is that the second image suppose to be painted normally, but now it rotates too. Please help me.
    example:
    Graphics2D g2 = (Graphics2D)g;
    fHeight = INumb.getHeight(this)/2;
    fWidth = INumb.getWidth(this)/2;
    g2.translate(x, y);
    g2.rotate(Math.toRadians(dAngle),fWidth,fHeight);
    g2.translate(-x, -y);
    g2.drawImage(INumb,x,y,this);
    /*now this next image is suppose to be painted normally, but now it just spinns around (I've got thread in this program*/
    g.drawImage(IScreen,0,0,this);
    how do I fix this problem?
    Thanks advance

    Thanks again, but I still have a problem. here is a code:
    IScreen = createImage(getSize().width, getSize().height);
    BGroundWin = IScreen.getGraphics();
    public void paint(Graphics g)
    //first I'm drawing all kinds of stuff to the BGroundWin
    BGroundWin.drawString(.....);
    //and now I'll have to paint this INumb image, wich is spinning around
    Graphics2D g2 = (Graphics2D)g;
    fHeight = INumb.getHeight(this)/2;
    fWidth = INumb.getWidth(this)/2;
    g2.translate(x, y);
    g2.rotate(Math.toRadians(dAngle),fWidth,fHeight);
    g2.translate(-x, -y);
    //drawing this spinning Image to the BGroundWin
    BGroundWin.drawImage(INumb,x,y,this);
    /*now I'm drawing the whole screen,but WHAT DO I HAVE TO DO TO AVOID OTHER PARTS ROTATING(only INumb suppose to rotate*/
    g.drawImage(IScreen,0,0,this);
    I've tryed many differend ways, but for some reason(too dumb I guess) I can't make it work. If I don't draw rotated image to the BGroundWin screen flashes. if draw it there everything rotates.
    If you could help me, I would be very thankful.

  • Image rotator

    Hi I have a problem with editing my image rotator in Dreamweaver, when I go to open it I get this message: This is not located with in your defined site, please save the document in your Dreamweaver site first, I built the rotors in my Dreamweaver site, and they also work, I just cant edit them, I tried the suppliers of the rotator image magic, Projectseven.com but they said this is a Dreamwever problem. Can any one help please, thanks Jeff

    Hi Ken, to the best of my knowledge all the dependent files are on the server, remember all the rotators work I just can’t edit the, the same thing applies to all of the rotators on the site, the URL is: http://qualitycarpets.net/index.php
    Since I left this message in the forum I have noticed the same is happening on my other site: http://thecarpetandflooringconsultant.co.uk/
    Sorry to be a pain. Thanks Jeff

  • Image rotation working in template, but nowhere else

    Hi,
    I'm relatively new to Dreamweaver.
    I have a page with some rotating images, created following a Communitymx recommendation (http://www.communitymx.com/content/article.cfm?cid=651FF).
    The website template (http://www.johnaverill.com/templates/main_template.dwt) seems to rotate images perfectly; however, image rotation on index.html and the others will not work.
    Any help or recommendations would be greatly appreciated.  Thanks, Paul

    osgood_
    ah, you are correct.  sorry, I didn't catch that I was i am just posting the same old apparent bad code (index.html).
    I did create index_2.html and rename it to index.html per your instructions of Mar 5 (i've actually done it twice now). Pictures not rotating with the index_2 or the new index.html either.  
    Also noticed recreating the index continues to get me the extra:
    function randomImages(){
    if(counter == (imgs.length)){
    counter = 0;
    the template seems to be putting this in there new index for some reason.
    New index here:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/main_template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>John Averill - Welcome</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    body {
    background: #000;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: normal;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
    color: #000;
    text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
    color: #000;
    text-decoration: none;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: underline;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
    width: 960px;
    background: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
    background: #000;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
    font-size: 100%;
    /* ~~ The footer ~~ */
    .footer {
    padding: 10px 0;
    background: #FFF;
    margin: 20px;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #maincontent {
    width:915px;
    height:auto;
    z-index:1;
    left: 114px;
    top: 351px;
    margin: 20px auto 0px;
    .container .footer table tr td h6 {
    color: #FFF;
    </style>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    /* pw - removed old code
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    // Comma separated list of images to rotate
    var imgs = new
    Array('_images/1.jpg','_images/2.jpg','_images/3.jpg','_images/4.jpg');
    // delay in milliseconds between image swaps 1000 = 1 second
    var delay = 3000;
    var counter = 0;
    function preloadImgs(){
       for(var i=0;i<imgs.length;i++){
         MM_preloadImages(imgs[i]);
    function randomImages(){
       if(counter == (imgs.length)){
         counter = 0;
       MM_swapImage('rotator', '', imgs[counter++]imgs[i]);
    function randomImages(){
       if(counter == (imgs.length)){
         counter = 0;
       MM_swapImage('rotator', '', imgs[counter++]);
       setTimeout('randomImages()', delay);
    </script>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body onload="preloadImgs();randomImages();">
    <div class="container">
      <div class="header">
        <div align="center"><!-- InstanceBeginEditable name="header_image" -->
    <img src="_images/1.jpg" name="rotator" width="960" height="300" id="rotator" /><!-- InstanceEndEditable -->
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a href="index.html">Home</a></li>
            <li><a href="about.html">About</a></li>
    <li><a href="partners.html">Our Underwriters</a></li>
      <li><a href="claims.html">Claims</a></li>
    <li><a href="markets.html">Industry Focus</a></li>
      <li><a href="assignments.html">Assignments</a></li>
      <li><a href="_clienttestimonials/testimonials.html">Client Testimonials</a></li>
      <li><a href="resources.html">Resources</a></li>
          </ul>
        </div>
        <!-- end .header -->
      </div>
      <div class="content">
    <h1> </h1>
    <!-- InstanceBeginEditable name="main_content" -->
    <div id="maincontent">
      <p><img src="_images/john_averill_bw.jpg" alt="" width="98" height="122" align="right" /></p>
      <p> </p>
      <h1><img src="_images/johncaverill.jpg" alt="" width="313" height="80" id="Image3" /></h1>
      <h3>Insurance  and Risk Management for Aircraft/Aerospace and Defense Companies</h3>
      <p align="justify">Welcome, this is an online bio for John C. Averill.  This site also has a description of my capabilities, services offered and successes</p>
      <p align="justify">FIDUCIARY ROLE</p>
      <p align="justify">My team and I take our  fiduciary role as insurance brokers and risk consultants seriously. I am held  accountable to a select group of risk management professionals who have an  enormous amount of wisdom and knowledge about the property and casualty insurance  world, providing my team and me consistent guiding principles. Due to our  fiduciary role, we do not publicize our clients list but we do have several letters  from clients on file as part of this site, see Client Testimonials.</p>
      <p align="justify">CONFIDENCE IN THE PROCESS</p>
      <p align="justify">The process of  designing a risk management strategy and purchasing insurance should be  comprehensive. The focus should be on pre-engineering claims payments. You should have  total confidence in your broker and insurance company. After a claim has  occurred is not the time to second guess the dollars you spent on insurance  premiums and the commissions or fees you paid a broker. </p>
      <p align="justify">PHILOSOPHY</p>
      <p align="justify">Our philosophy and  goal is to never have a client have an uncovered claim that he / she failed to insure. We have developed   processes and procedures to determine exposures, forecast claims and efficiently  purchase the needed insurance coverage.</p>
      <p align="justify"><strong>SERVICES OF AEROSPACE AND DEFENSE DIVISION</strong></p>
      <p>Insurance Brokerage</p>
      <p>Risk Analysis  (Internal Risk Resource Data Base)</p>
      <p>Travel Risk Management  analysis</p>
      <p>Global Travelers Group </p>
      <p>Submission Preparation</p>
      <p>Benchmarking Analysis</p>
      <p>Contractual Review</p>
      <p>Loss Control</p>
      <p>Direct Access to all  major insurance companies</p>
      <p>Internal claims  adjustors</p>
      <p>Quarterly Newsletter </p>
      <h1> </h1>
    </div>
    <!-- InstanceEndEditable -->
    <h1> </h1>
      </div>
      <div class="footer">
        <table border="0" align="center">
          <tr>
            <td width="906" height="5" bgcolor="#004C90"><h6>Aviation News</h6></td>
            <td width="906" height="5" bgcolor="#004C90"><h6>News on John</h6></td>
            <td width="906" height="5" bgcolor="#004C90"><h6>Quick Help</h6></td>
          </tr>
          <tr>
            <td width="906" height="25" valign="top"><h5 align="left">
              <script language="JavaScript" src="http://feed2js.org//feed2js.php?src=http%3A%2F%2Fwww.aero-news.net%2Fnews%2Frssfeed.xml&am p;num=3&amp;utf=y"  charset="UTF-8" type="text/javascript"></script>
              <noscript>
              <a href="View" _mce_href="http://feed2js.org//feed2js.php?src=http%3A%2F%2Fwww.aero-news.net%2Fnews%2Frs sfeed.xml&amp;num=3&amp;utf=y&amp;html=y">View">http://feed2js.org//feed2js.php?src=http%3 A%2F%2Fwww.aero-news.net%2Fnews%2Frssfeed.xml&amp;num=3&amp;utf=y&amp;html=y">View RSS feed</a>
              </noscript>
            </h5>
            <p align="left">  </p></td>
            <td width="906" height="25" valign="top"><h5>Averill speaks at 2011 Risk and Insurance Management  Society annual conference in Vancouver on Aviation Loss Control.  </h5>
            <h5>Averill appointed to National Business Aviation  Association Insurance Committee. </h5></td>
            <td width="906" height="25" valign="top"><!-- InstanceBeginEditable name="quick_help" -->
              <h5 align="left"><a href="claims.html">Claims Information</a></h5>
    <h5 align="left"><a href="contacts.html">Contact Me</a></h5>
            <!-- InstanceEndEditable --></td>
          </tr>
        </table>
        <p><img src="_images/ioa_aerospace_logo.jpg" width="150" height="70" alt="ioa_logo" /></p>
    </div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

Maybe you are looking for

  • How do I stop touchsmart from loading on start up, taking too much time

    pc taking too long to boot, touchsmart loading on every boot up, taking way too much time

  • Report Header is not appearing

    Hi, I had inserted a Picture into the Group Header and i did some groupings also in the report. in Preview initially it shows Report header but after drilling down...the report header is not appearing.....is it is the natural behaviour or any workaro

  • Problems open word files gmail

    When I want to save an attached Word file from gmail, want to save the program with a completely different and really long file name - desutom can not file to either save or open, it works the other hand, in Outlook.Jag have managed to save a ye go o

  • ACE: ifmgr process spiking every 15 seconds

    The following output is the command sh proc cpu | i ifmgr run every second for 1 minute. 896 6154 1923109 3 0.0 0.0 % 7.20% 7.54% ifmgr 896 6648 1923494 3 0.0 22.55% 8.43% 7.79% ifmgr 896 6648 1923494 3 0.0 22.55% 8.43% 7.79% ifmgr 896 6648 1923494 3

  • Caps (ladspa plugins collection for guitar players) doesn't work

    Hi there Yesterday I finally wanted to try out my new M-Audio Transit with jack and jack-rack and play the guitar a little using ladspa to make a fine distortion. I always preferred caps, because their sound fits my needs best. However, there is no s