$(document).ready(function() {

// Leseprobe 
  $(".leseprobe").css({ "display":"block"});
  $(".leseprobe img").each(function(i) {
    var imgsrc = $(this).attr('src');
    $(this).wrap("<a href=\" "+ imgsrc + " \" class=\"lightbox\">Leseprobe</a>");
});

// lightBox
//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
//$('#gallery a').lightBox(); // Select all links in object with gallery ID
//$('a').lightBox(); // Select all links in the page
$('a.lightbox').lightBox({
	imageLoading: '	http://www.utawolfverlag.com/fileadmin/template/js/images/lightbox-ico-loading.gif',
	imageBtnClose: 'http://www.utawolfverlag.com/fileadmin/template/js/images/fancy_closebox.png',
	imageBtnPrev: '	http://www.utawolfverlag.com/fileadmin/template/js/images/fancy_left.png',
	imageBtnNext: '	http://www.utawolfverlag.com/fileadmin/template/js/images/fancy_right.png'
   }); // Select all links with lightbox class

// Start toggle	
$("div.bestellen").append($('<div id="ol_toggle" style="width: 100%; height: 1.5em; color: #868789; cursor: pointer;" >Bestellen</div>').slideToggle("#bestellformular"));
$("div#ol_toggle").click(function () {
	$("#bestellformular").slideToggle("slow");
  });    
$("#bestellformular").slideUp("slow");
// End toggle
	


//EOF
});
