function credits(site, project) {
	$('document').ready( function() {
		if(site == 'beunequaled.com') {
			if(project) {
				$('#credits').html(' | A <a href="http://beunequaled.com" style="color: #F50;">Be Unequaled</a> project');
			} else {
				$('#credits').html(' | website by <a href="http://beunequaled.com" style="color: #F50;">Be Unequaled</a>');
			}
		} else if(site == 'charanj.it') {
			$('#credits').html(' | website by <a href="http://charanj.it" style="color: #7EB2CE;">Charanjit Chana</a>');
		}
	});
}