 $(function(){
   var path = location.href;
   var path_arr=path.split("/");
   var array_length=path_arr.length
   if (array_length > 0){
     file=path_arr[array_length-1]
   }
   else{
       file=path;
   }
   if ( file )
     $('#topmenu a[href$="' + file + '"]').attr('class', 'active');
	 else{
		$('#topmenu a[href$="index.php"]').attr('class', 'active');
	}
	 
	 $('.myaccnt a[href$="' + file + '"] li').attr('class', 'active');
	 
   //Quick Search Selected value
   
   $("#select_prod option").each(function(){
	  var selboxVal=$(this).val();
	  if(file==selboxVal){
		$(this).attr('selected', 'selected');
	  }
   });
});

