$(function () {
	//
	//	image caption
	//
	$('img.r_caption').jcaption({
		//Element to wrap the image and caption in
		wrapperElement: 'div',
		//Class for wrapper element
		wrapperClass: 'r_img',
		//Caption Element
		captionElement: 'p',
		//Animate on hover over the image
		animate: false
	});
	$('img.l_caption').jcaption({
		//Element to wrap the image and caption in
		wrapperElement: 'div',
		//Class for wrapper element
		wrapperClass: 'l_img',
		//Caption Element
		captionElement: 'p',
		//Animate on hover over the image
		animate: false
	});
	$('img.c_caption').jcaption({
		//Element to wrap the image and caption in
		wrapperElement: 'div',
		//Class for wrapper element
		wrapperClass: 'c_img',
		//Caption Element
		captionElement: 'p',
		//Animate on hover over the image
		animate: false
	});
	//
	//	profile clearfix
	//
	$('div.profile').addClass('clearfix');
});
