// JavaScript Document
function validate()
//contact=document.form1.contactno.value();
//alert (contact);
{
	if(document.form1.name.value=="" || document.form1.name.value==null)
		{
		alert("Enter Name !!!");
		document.form1.name.focus();
		}
	else if(document.form1.email.value=="" || document.form1.email.value==null)
		{
		alert("Enter Email ID !!!");
		document.form1.email.focus();
		}
	else if(document.form1.contactno.value=="" || document.form1.contactno.value==null)
		{
		alert("Enter Contact No. !!!");
		document.form1.contactno.focus();
		}
	else if(isNaN(document.form1.contactno.value))
		{
		alert("Enter Valid Contact No. !!!");
		document.form1.contactno.value="";
		document.form1.contactno.focus();
		}
	else if(document.form1.feedback.value=="" || document.form1.feedback.value==null)
		{
		alert("Enter Feedback !!!");
		document.form1.feedback.focus();
		}
	else
		{
			document.form1.submit();
		}

}


function selected_page()
{
	var path=window.location.pathname;
	var page_name=path.substring(path.lastIndexOf('/')+1);
	if(page_name=='index.php' || page_name=='')
	{
		document.getElementById('ssj_home').style.background='url(images/home_rollover.jpg)';
		document.getElementById('ssj_home').style.backgroundRepeat='no-repeat';
		document.getElementById('ssj_home').style.backgroundPosition='40px 0px';
	}
	else if(page_name=='about_us.php')
	{
		document.getElementById('ssj_about').style.background='url(images/about_us_rollover.jpg)';
		document.getElementById('ssj_about').style.backgroundRepeat='no-repeat';
		document.getElementById('ssj_about').style.backgroundPosition='40px 0px';
	}
	else if(page_name=='services.php' || page_name=='seo_services.php' || page_name=='seo_plans.php')
	{
		document.getElementById('ssj_services').style.background='url(images/services_rollover.jpg)';
		document.getElementById('ssj_services').style.backgroundRepeat='no-repeat';
		document.getElementById('ssj_services').style.backgroundPosition='40px 0px';
	}
	else if(page_name=='link_building.php' || page_name=='article_submission.php' || page_name=='directory_submission.php' || page_name=='Social_BookMarking_Services.php')
	{
		document.getElementById('ssj_link_building').style.background='url(images/link_building_rollover.jpg)';
		document.getElementById('ssj_link_building').style.backgroundRepeat='no-repeat';
		document.getElementById('ssj_link_building').style.backgroundPosition='40px 0px';
	}
	else if(page_name=='contact_us.php')
	{
		document.getElementById('ssj_contact').style.background='url(images/contact_us_rollover.jpg)';
		document.getElementById('ssj_contact').style.backgroundRepeat='no-repeat';
		document.getElementById('ssj_contact').style.backgroundPosition='40px 0px';
	}	
}