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

$('.accordion').accordion({
	header: '.title',
	active: false,
	alwaysOpen: false,
	autoheight: false
});

});