window.addEvent('domready', function(){
	var pageURL = document.URL;

	/*	if (pageURL.match('^http://localhost/moo_oneindia.in/one')) 
			{
				news();
			}
		else if (pageURL.match('^http://localhost/moo_oneindia.in/two')) 
			{
				entertainment();
			}
		else if (pageURL.match('^http://localhost/moo_oneindia.in/three')) 
			{
				living();
			}

	*/
		if (pageURL.match('^http://news.oneindia.in/')) 
			{
				news();
			}
		else if (pageURL.match('^http://entertainment.oneindia.in/')) 
			{
				entertainment();
			}
		else if (pageURL.match('^http://living.oneindia.in/')) 
			{
				living();
			}
}); 

function living()
{
	var class_count = $$(".ls5 b").length;

	if (class_count==1)
	{
		var title = $$(".ls5 b").getText();
		var linkURL = document.URL;
		drawBookmarks(linkURL,title);
	}
}


function entertainment()
{
	var class_count = $$(".m11 b").length;
	
	if (class_count==1)
	{
		var title = $$(".m11 b").getText();
		var linkURL = document.URL;
		drawBookmarks(linkURL,title);		
	}
}


function news()
{
	var title = document.title;
	var linkURL = document.URL;
	drawBookmarks(linkURL,title);
}

function drawBookmarks(V_URL,V_TITLE)
{
//	alert ( V_TITLE );
	consoleFrame = document.createElement("div");
	consoleFrame.setAttribute("id", "bookmarklet");
	consoleFrame.style.width = "100%";
	consoleFrame.style.left = "0";
	consoleFrame.style.bottom = "0";
	//document.body.appendChild(consoleFrame);
	document.getElementById('bookmark').appendChild(consoleFrame);
	//draw links
	$('bookmarklet').setHTML("<br /><span class='oi2'><font color='maroon'><b>Bookmark on&nbsp;&nbsp;</b></font></span>&nbsp;&nbsp;&nbsp;&nbsp; <a set='yes' id='delicious' linkindex='49' href='#' target='_BLANK'><img src='http://news.oneindia.in/img/AddTo_Delicious.gif.png' title='Del.icio.us' border='0'></a> &nbsp;&nbsp; <a set='yes' linkindex='50' id='digg' href='' target='_BLANK'><img src='http://news.oneindia.in/img/AddTo_Digg.png' title='Digg.com' border='0'></a> &nbsp;&nbsp; <a set='yes' id='yahoo' linkindex='51' href='#' target='_BLANK'><img src='http://news.oneindia.in/img/AddTo_Yahoo.gif' title='Yahoo! My Web' border='0'></a>&nbsp;&nbsp; <a set='yes' linkindex='53' id='ipad' href='' target='_BLANK'><img src='http://news.oneindia.in/img/indianpad.png' title='indiapad' border='0'></a>&nbsp;&nbsp; <a set='yes' id='netscape' linkindex='54' href='#' target='_BLANK'><img src='http://news.oneindia.in/img/propellor.gif' title='propellor' border='0'></a>&nbsp;&nbsp; <a set='yes' linkindex='55' id='fark' href='#' target='_BLANK'><img src='http://news.oneindia.in/img/fark_icon.png' title='Fark' border='0'></a>&nbsp;&nbsp;<a set='yes' id='oneindia' linkindex='48' href='#' target='_BLANK'><img src='http://news.oneindia.in/img/one_logo.gif' title='ONE bookmarks' border='0'></a>&nbsp;&nbsp; "); 


	//set HREF property
	$("oneindia").setAttribute('href','http://bookmarks.oneindia.in/bookmark.html?url=' + V_URL + '&title=' + V_TITLE);
	$("delicious").setAttribute('href','http://del.icio.us/post?v=2&url=' + V_URL + '&title=' + V_TITLE);
	$("digg").setAttribute('href','http://digg.com/submit?url=' + V_URL + '&title=' + V_TITLE + '&phase=2');
	$("yahoo").setAttribute('href','http://myweb2.search.yahoo.com/myresults/bookmarklet?u=' + V_URL + '&t=' + V_TITLE + '&d=&ei=UTF-8');
	$("ipad").setAttribute('href','http://www.indianpad.com/submit.php?url=' + V_URL + '&title=' + V_TITLE + '&d=&ei=UTF-8');
	//$("netscape").setAttribute('href','http://www.netscape.com/submit/?U=' + V_URL + '&T=' + V_TITLE + '&d=&ei=UTF-8');
	$("netscape").setAttribute('href','http://www.propeller.com/submit/?U=' + V_URL + '&T=' + V_TITLE + '&d=&ei=UTF-8');
	$("fark").setAttribute('href','http://cgi.fark.com/cgi/fark/submit.pl?new_url=' + V_URL + '&new_comment=' + V_TITLE);
}
