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

