41
| <![CDATA[<script type="text/javascript">
hs.graphicsDir = '/html/javascript/highslide/graphics/';
hs.outlineType = 'custom';
hs.captionEval = 'this.a.title';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.fadeInOut = true;
hs.dimmingOpacity = 0.8;
hs.marginBottom = 105; // make room for the thumbstrip and the controls
hs.numberPosition = 'caption';
// Add the slideshow controller
hs.addSlideshow({
slideshowGroup: 'group1',
interval: 5000,
repeat: true,
useControls: true,
fixedControls: 'fit',
overlayOptions: {
className: 'text-controls',
opacity: 0.75,
position: 'bottom center',
offsetX: 0,
offsetY: -10,
hideOnMouseOut: true
}
});
// gallery config object
var config1 = {
slideshowGroup: 'group1',
transitions: ['expand', 'crossfade']
};
</script>]]>
|
78
| <![CDATA[<script language="JavaScript">
function setFontSize(fontVal) {
var fontSet = document.getElementById('fontSet');
var docBase = new Array(); docBase = document.getElementsByTagName('pageArea');
if (!fontVal) {fontVal = document.getElementById('fontSet').value;}
var docSize = fontVal+'pt';
for(var i=0;i<docBase.length;i++)
docBase[i].style.fontSize = docSize;
var docBase = new Array(); docBase = document.getElementsByTagName('body');
docBase[0].style.fontSize = docSize;
docSize = (fontVal-2)+'pt';
document.getElementById('letras').style.fontSize = docSize;
if (fontSet) {
fontSet.value = fontVal;
}
}
</script>]]>
|
95
| <![CDATA[<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5943783-6']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>]]>
|
107
| <![CDATA[<script>
$(function() {
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$('#toTop').click(function() {
$('body,html').animate({scrollTop:0},800);
});
});
</script>]]>
|
547
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
//carousel
$(".carousel").jCarouselLite({
btnNext: ".next",
btnPrev: ".prev",
visible: 3
});
});
</script>]]>
|