
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 0.62 KB | hits: 21 | expires: Never
<script type="text/javascript">
$(document).ready(function(){
$("div.rollcontent").hide();
$("div.rolltitle").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$("div.rolltitle").click(function(){
$(this).next("div.rollcontent").slideToggle("slow");
});
$(".expand_all").toggle(function(){
$(this).addClass("expanded");
}, function () {
$(this).removeClass("expanded");
});
$(".expand_all").click(function(){
$(".toggle_container").slideToggle("slow");
});
});
</script>