// JavaScript Document
function init(){
	document.getElementById("cmntclose").onclick=closecomment;
	document.getElementById("yahoo").onclick=fillcomment;
	document.getElementById("msn").onclick=fillcomment;
	document.getElementById("skype").onclick=fillcomment;
}

function fillcomment(){
	if (this.id=="yahoo"){
		txt="You can get in touch with us on<br />Yahoo:<br/><span class='commentTextid'>ajay_z1@yahoo.com</span>"
		opencomment("-65px", "-145px", txt)
	}
	else if(this.id=="msn"){
		txt="You can get in touch with us on<br />MSN:<br/><span class='commentTextid'>smokecolors@hotmail.com</span>"
		opencomment("-65px", "-100px", txt)
	}
	else if(this.id=="skype"){
		txt="You can get in touch with us on<br />Skype:<br/><span class='commentTextid'>smokecolors1@skype.com</span>"
		opencomment("-65px", "-55px", txt)
	}
	}

function opencomment(tm, lm, txtstring){
	document.getElementById("comment").style.marginTop=tm;
	document.getElementById("comment").style.marginLeft=lm;
	document.getElementById("commentText").innerHTML=txtstring;
	document.getElementById("comment").style.display="block";
	}
	
function closecomment(){
	document.getElementById("comment").style.display="none";
	}
	
