jQuery.noConflict();
jQuery(document).ready(function()
{
	jQuery('a[href$=.jpg],a[href$=.png],a[href$=.gif]').fancybox();
	jQuery('.hoverimg img, img.hoverimg').hover(function() {
		jQuery(this).attr('src', jQuery(this).attr('src').split('.png').join('-h.png'));
	}, function() {
		jQuery(this).attr('src', jQuery(this).attr('src').split('-h.png').join('.png'));
	});

	
	jQuery('.content-body h2:not(.nocufon), .content-body h3:not(.nocufon), .content-body h4:not(.nocufon), .content-body h5:not(.nocufon)').addClass('cufon');

	Cufon('.cufon', {fontFamily: 'DINPro-Regular'});
	Cufon('.boxes strong, .single h1', {fontFamily: 'DINPro-Light', color: '#ffffff'});
	Cufon('.pagination a', {fontFamily: 'DINPro-Light', hover: true});
	Cufon.now();
});
