window.ahrefs = [
	{id:'id-0001', 'link' : 'http://dietlist.ru/'},
	{id:'id-0002', 'link' : 'http://dietlist.ru/'},
	{id:'id-0003', 'link' : 'http://dietlist.ru/about/'},
	{id:'id-0004', 'link' : 'http://dietlist.ru/citaty-dlya-podpisi-v-forum/'},
	{id:'id-0005', 'link' : 'http://dietlist.ru/lineechki-dlya-forumov/'},
	
	{id:'id-0006', 'link' : 'http://dietlist.ru/'},
	{id:'id-0007', 'link' : 'http://dietlist.ru/adv/'}
];


window.onload = function() 
{
	for(i=0;i<ahrefs.length; i++)
	{
		try
		{
			item = window.ahrefs[i];
			document.getElementById(item.id).onclick = new Function("window.location.href = '" + item.link + "';");
		}
		catch(e)
		{}
	}	
	fixPostList();
}

function fixPostList()
{
	divs = document.getElementsByTagName('DIV');
	for(i=0;i<divs.length;i++) {

		if(divs[i].className == 'title') {
			try
			{
				postLink = divs[i].getElementsByTagName('A')[0];
				postHref = postLink.getAttribute('href');
	
				image = divs[i].parentNode.getElementsByTagName('DIV')[1].getElementsByTagName('IMG')[0];
				image.onclick = new Function("window.location.href = '" + postHref + "';");
			}
			catch(e)
			{
				
			}
		}
	}	
}

