// other fx
$(document).ready(function() {
	// clickable elements
	$('.clickable').click(function() {
		if($(this).find('p.readMore a').attr('target') == '_blank'){
			window.open($(this).find('p.readMore a').attr('href'));
			} else {
				document.location.href = $(this).find('p.readMore a').attr('href');
				}
	});
});/**/



