/* 
 * 
 * tourList-xx.js
 * 
 * $Id: tourList-02.js,v 1.1 2011-11-10 12:42:26 mat Exp $
 * 
 * Copyright (C) 2011 Discover Dorset Ltd
 * 
 * Discover Dorset, 1 Lowther House, 110 Lowther Rd, Bournemouth, Dorset, BH8 8NS, GB
 * 
 */

onLoadFn.push(tourListInit);

function tourListInit() {

    var divs = document.getElementById("layout_content").getElementsByTagName("DIV");

    for (var i = 0; i < divs.length; i++) {

        if (containsWord(divs[i].className, "ident_tour-summary")) {
            
            var children = divs[i].childNodes;
            
            for (var j = 0; j < children.length; j++) {
                
                if (containsWord(children[j].className, "ident_details")) {
                    
                    children[j].onclick = openTour;
                    break;
                }
            }
        }
    }
}

function openTour() {

    var links = this.getElementsByTagName("A");

    if (links.length > 0) {

        window.location = links[0].href;
    }

    return false;
}



