﻿/*JQuery effect starts*/
$(document).ready(function()
    {
    	$(".sdmenu span").click(function()
	    { 
	        if($(this.parentNode).attr("class")=="collapsed")
                {
                    $(this.parentNode).removeClass('collapsed'); 
                }
            else
                {
                    $(this.parentNode).addClass('collapsed'); 
                }
	        $(this).next("p").slideToggle("slow").siblings("p:visible").slideUp("slow");
	    });
	 });
//	 $(document).ready(function()
//        {
//	        slide("#my_menu", 25, 15, 150, .8);
//        });
	 function slide(navigation_id, pad_out, pad_in, time, multiplier)
        {
	        // creates the target paths
	        var list_elements = navigation_id + " div p";
	        var link_elements = list_elements + " a";
        	
	        // initiates the timer used for the sliding animation
	        var timer = 0;
        	
	        // creates the slide animation for all list elements 
	        $(list_elements).each(function(i)
	        {
		        // margin left = - ([width of element] + [total vertical padding of element])
		        $(this).css("margin-left","-180px");
		        // updates timer
		        timer = (timer*multiplier + time);
		        $(this).animate({ marginLeft: "0" }, timer);
		        $(this).animate({ marginLeft: "15px" }, timer);
		        $(this).animate({ marginLeft: "0" }, timer);
	        });

	        // creates the hover-slide effect for all link elements 		
	        $(link_elements).each(function(i)
	        {
		        $(this).hover(
		        function()
		        {
			        $(this).animate({ paddingLeft: pad_out }, 150);
		        },		
		        function()
		        {
			        $(this).animate({ paddingLeft: pad_in }, 150);
		        });
	        });
        }
/*JQuery effect ends*/
/*****************************div hide and show******************************/
/* faq page script*/
function ChangeDivClass(obj)
{
	if(document.getElementById(obj).className  == "FaqDiv")
	{
		document.getElementById(obj).className  = "FaqDiv2";
	}
	else
	{
	    document.getElementById(obj).className  = "FaqDiv";
	}
}

function ConfirmMessage(Checkbox,message)
{
    if(document.getElementById(Checkbox).checked)
    {
        return true;
    }
    else
    {
        message = " - "+ message ;
        message = message.replace("<br>","\n  ");          
        var flag=confirm(message);
        if(flag == true)
        {
            return false;
        }
        else
        {
            return true;
        }
    }
}

function formSubmit(evt)
{
	var charCode = (evt.which) ? evt.which : event.keyCode
	if(charCode == 13)
	{		
	    document.getElementById("Top1_btn_Go").click();		
		return false;
	}
}

function formSubmit(evt)
{
	var charCode = (evt.which) ? evt.which : event.keyCode
	if(charCode == 13)
	{
	    document.getElementById("Top1_btn_Go").click();		
		return false;
	}
}