Hi FatherStorm and Bikeboy389,
Thanks for your comments. Yea im using Jquery. This is what I have so far.
JQUERY
<script type="text/javascript">
$(function() {
$("#nav-box").hide();
//run the currently selected effect
function runEffect(){
//get effect type from
var selectedEffect = $('#effectTypes').val();
var options = {};
//run the effect
$("#nav-box").toggle("blind",options,500);
$(this).toggleClass("active").next().slideToggle("slow");
};
//set effect from select menu value
$("ul#main-nav li a.kingfisher").click(function() {
runEffect();
return false;
});//Close Run Effect Function
$(document).ready(function(){
$("#nav-box").hide();
$("ul#main-nav li a.kingfisher").click(function(){
$(this).toggleClass("active").next();
});
});
$(document).ready(function(){
$("#nav-box").hide();
$("ul#main-nav li a.kingfisher").click(function(){
$(".curve").toggleClass("active").next();
});
});
});//Close Main Function
$(function() {
$("#nav-box").hide();
//run the currently selected effect
function runEffect(){
//get effect type from
var selectedEffect = $('#effectTypes').val();
var options = {};
//run the effect
$("#nav-box").toggle("blind",options,500);
$(this).toggleClass("active").next().slideToggle("slow");
};
//set effect from select menu value
$("ul#main-nav li a.dsm").click(function() {
runEffect();
return false;
});//Close Run Effect Function
$(document).ready(function(){
$("#nav-box").hide();
$("ul#main-nav li a.dsm").click(function(){
$(this).toggleClass("active").next();
});
});
$(document).ready(function(){
$("#nav-box").hide();
$("ul#main-nav li a.dsm").click(function(){
$(".curve").toggleClass("active").next();
});
});
});//Close Main Function
</script>
And the HTML is
<ul id="main-nav"><!--Open Main Navigation with JQuery Dropdown-->
<li><a href="#" class="dsm">dsm Products</a></li>
<li><a href="#" class="kingfisher">kingfisher Products</a></li>
<li><a href="#" class="covertec" >covertec</a></li>
</ul><!--Close Main Navigation-->
<div id="nav-box">
<div class="kingfisher"> This is the content for the Kingfisher Products</div>
<div class="dsm">This is the content for the DSM products</div>
</div>
Hope this makes a little more sense,
Fatherstorm, Thats exactly what I needed. On your example is there a way in which you can hide all the divs when the page loads and then have the option on which link to click on?