Showing Hijri date on alhudapublications.org welcome navigation bar
Add the following code to your theme header.phtml
$jd = Mage::getModel('core/date')->date('d');
$jm = Mage::getModel('core/date')->date('m');
$jy = Mage::getModel('core/date')->date('Y');
echo Mage::helper('hijridate/hijridate')->Greg2Hijri($jd, $jm, $jy, true);
Date calculation logic from http://www.phpsimplicity.com/tips.php?id=17