

function ShowCallout(callout)
{
    if(Element(callout).style.display=='none')
         Element(callout).style.display='block';
    else if(Element(callout).style.display=='')
         Element(callout).style.display='block';
    else  
          Element(callout).style.display='none';   
          
	if(callout=='callout-Male')
	{  
		Element('callout-Female').style.display='none';	
		Element('callout-Girl').style.display='none';	
	}
	else if(callout=='callout-Girl')
	{
		Element('callout-Male').style.display='none';	
		Element('callout-Female').style.display='none';
	}
	else
	{
		Element('callout-Male').style.display='none';	
		Element('callout-Girl').style.display='none';
	}
	
}

function ShowSingleCallout(callout)
{

	   if(Element(callout).style.display=='none')
         Element(callout).style.display='block';
    else if(Element(callout).style.display=='')
         Element(callout).style.display='block';
    else  
          Element(callout).style.display='none';  
}
function HoverIcon(id,action)
{
	
	if(action=='onmouseover')
	{
	 Element(id).style.marginTop='5px';
	}
	else
	{
	Element(id).style.marginTop='0px';
	}
	
}
function HoverButton(id,action,image,text)
{

	if(action=='onmouseover')
	{
	 Element(id).src='images/buttons/hover/'+image;
	 Element('txtWoodSign').innerHTML=text;	

	}
	else
	{
	Element(id).src='images/buttons/'+image;
	Element('txtWoodSign').innerHTML="Welcome";	
	}
}
function HoverButton2(id,action,image,text)
{
	if(action=='onmouseover')
	{
	 Element(id).src='images/icon/hover/'+image;
	}
	else
	{
	Element(id).src='images/icon/'+image;
	}
}
function HoverButton3(id,action,image,text)
{
	if(action=='onmouseover')
	{
	 Element(id).src='images/content/hover/'+image;
	}
	else
	{
	Element(id).src='images/content/'+image;
	}
}
function ToggleMenu()
{
    $('#dvMenu-icon').animate({width: 'toggle'});
}
function HoverSideButton(id)
{
 $("#navResume").effect("highlight", {}, 1000);
}

function SetNoteDetail(link)
{
	Element('frmNotesDetail').src=link;
}





