/* this is a smaller way of rolling over, works in IE5 and NS4.7
limitations: if you want multiple rollovers using same image. cannot be done. use the standard rollover script.
usage: <a onMouseOver="swap('super');" onMouseOut="swap('super');"><img src="./super.jpg" name="super"></a>
swaps super.jpg to superon.jpg and back on mouseover /  mouseout
*/

function img_act(whichImg){
	eval("document.images['" + whichImg + "'].src = './images/homeimages/" + whichImg + "on.jpg'");
}

function img_inact(whichImg){
	eval("document.images['" + whichImg + "'].src = './images/homeimages/" + whichImg + ".jpg'");
}

// function below is a simple text swapper. Values are hard coded in, this is not in documented yet.

var swapText=new Array('Cooney Marine are acknowledged by the marine trade to be one of the UK\'s leading manufacturers of fabricated, mirror finish, stainless steel yacht equipment and deck fittings. We provide first rate products and services and can deliver anywhere in the world.','The Super Yacht Range is specifically designed for the larger motor or sailing yacht. All products are built to the highest standards to give a quality finishing touch, material is all mirror polished 316 stainless steel (except bronze bushes)','Our top quality, affordable passerelles are available with remote control, self-stowing lifeline and dinghy handling system','Our superb range of Davits, supplied by Simpson Davits are, we believe, the best quality in the world. We\'re sure you won\'t be let down.<!-- no pun intended... -->','Our superior quality stainless steel deck fittings are used extensively by the leading boat builders in the UK. All items solidly manufactured in mirror polished oval 316 stainless steel tube. Designed to complement the finest quality yachts and power craft.','Whether you\'re looking for  a manual, hydraulic or remote controlled gangways, we can offer you supreme quality, design and reliability.','We offer a range of high quality cranes and davits manufactured in stainless steel with lift capacities up to 300kg.','Our range of quality hinges are made entirely of 316 Stainless Steel and give a choice of flush or traditional pin, as well as stud length or countersunk.','???????????');

function swap(divOn){

	if(document.all){
		dhtml.innerHTML = divOn;
	} else { // assume netscrape 4 or less (shoddy, shoddy, shoddy coding)
		document.layers["dhtml"].document.open();
		document.layers["dhtml"].document.write("<p class='bottomText'>" + divOn + "</p>");
		document.layers["dhtml"].document.close();
	}
}

function resetText(){
swap(swapText[0]);
}
