﻿/*
 * Product page java scripts
 *
 * Copyright (c) 2010 Software Force
 * Created date: 2010-01-23 Matthew So 
 *
 * www.software-force.com
 */

$(document).ready(function() {
	 var className = 'menuSelected';
	 var pathname = window.location.pathname;
	 // Remove previous added class from a tag 
	 $('#menu a').each(function()
	 {
	 	$(this).removeClass(className);		
	 });
	 //  Add class to selected menu a tag 
	 if (pathname.search(/product.htm$/i) != -1)
	 {
		$('a[href$=product.htm]').addClass(className);
	 }
	 else if (pathname.search(/service.htm$/i) != -1)
	 {
		$('a[href$=service.htm]').addClass(className);
	 }
	 else if (pathname.search(/contact.htm$/i) != -1)
	 {
		$('a[href$=contact.htm]').addClass(className);
	 }
	 else
	 {
		 $('a[href$=index.htm]').addClass(className);
	 }

});


