// JavaScript Document
jQuery(document).ready(function(){
jQuery("[class^='lt_']").each(function(){
								 $url = $(this).attr('class').slice(3)
								 $(this).wrap('<a href="' + $url + '"></a>');
								 }
					)
jQuery("[class^='ltb_']").each(function(){
								 
								 $url = $(this).attr('class').slice(4)
								 $(this).wrap('<a href="' + $url + '" target="_blank"></a>');
								 }
					)
						
jQuery('a.fancybox').fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
jQuery('.accordion').accordion({
	header: '.title',
	active: false,
	alwaysOpen: false,
	autoheight: false
});

});