| Get Connected |
|
|
|
.toggler {
color: #ffffff;
margin: 0;
padding:0;
vertical-align:middle;
height:50px;
background: url(/images/header.png) left center no-repeat;
font-size: 16px;
font-weight: bold;
cursor:pointer;
}
.element {
}
.element p {
margin: 0;
padding: 4px;
}
.float-right {
padding:10px 20px;
float:right;
}
blockquote {
text-style:italic;
padding:5px 0 5px 30px;
}
window.addEvent('domready', function() {
var accordion = new Accordion('h3.atStart', 'div.atStart', {
opacity: false,
onActive: function(toggler, element){
toggler.setStyle('color', '#ff3300');
},
onBackground: function(toggler, element){
toggler.setStyle('color', '#666');
}
}, $('accordion'));
var newTog = new Element('h3', {'class': 'toggler'}).setHTML('Common descent');
// HERE IS WHAT YOU READ IN JS CODE
});
|




