/**
 * Cool Tints - JS: jquery
 *
 *
 * @author Danny Otto | pixelbrand.net
 * @date   2010-03
 *
 * Hacer con Amor
 *
 */
$(document).ready(function() {
  $('a.lightbox').fancybox({'titlePosition':'inside'});
  $('div#th-slides').after('<a id="th-prev" href="#"><img src="/fileadmin/html/images/btn_prev.gif" alt="zurück" /></a><a id="th-next" href="#"><img src="/fileadmin/html/images/btn_next.gif" alt="weiter" /></a>').cycle({ fx: 'scrollLeft', speed: 'fast', timeout: 0, next: '#th-next', prev: '#th-prev' });
  $('div#th-slides div a').click( function () { $('#teaser img:first-child').attr('src', $(this).attr('href') ); $('#col1 .c1Infobox p').text($(this).children('span').text()); return false; } );
});
