/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function Links2Slide(idblock) {
  	$('#content A:has(IMG)').filter('[href$=jpg]')
    .add($('#content A:has(IMG)').filter('[href$=gif]'))
  	.addClass('highslide').click(function() { return hs.expand(this) })
  	.filter('[title]').after('<div class="highslide-caption">').each(function(){
  		$(this).next().html($(this).attr('title'));
  	});
}



