 $(document).ready(function() {

$.preloadCssImages();
 $('#container1 > ul:first-child').tabs({ fxFade: true, fxSpeed: 'fast' });
 $('#container2 > ul:first-child').tabs({ fxFade: true, fxSpeed: 'fast' });
 $(function() {
 $('#container3 > ul:first-child').tabs({ fxFade: true, fxSpeed: 'slow' });
});
 $(function()
{
$('dd').addClass('hidden');
$("dt > a").click(function(event) {
$(this).parent('dt').next('dd').show('slow');
$(this).css('backgroundImage', 'none');
    return false;
});

$("a.close").click(function(event) {
event.preventDefault();
$(this).parent('dd').hide('slow');
$('dt > a').css('backgroundImage', 'url(images/downArrowOff.png)').css('backgroundRepeat', 'no-repeat');
return false;
});
});

$('.switchColor ul li:even').not('li:has(h5)').css('color', '#757f90');
	 });


